Thank you Sergey! Your response solved the problem. I had not understood that the fith paramter of SetListMarkerInfo() refers to the paragraph style (I copied it from code I found in the web). With this modification it now works (yes, the wrong paragraph style was used):
ReportRichView ...
Search found 2 matches
- Fri Apr 04, 2025 10:02 am
- Forum: Support
- Topic: Bullet point list
- Replies: 2
- Views: 5730
- Thu Apr 03, 2025 11:55 am
- Forum: Support
- Topic: Bullet point list
- Replies: 2
- Views: 5730
Bullet point list
I'm trying to make a bullet point list in C++Builder using this:
ReportRichView->RichViewEdit->AddNL("My list:", RV_TEXT, RV_TEXT);
ReportRichView->RichViewEdit->SetListMarkerInfo(-1, RV_BULLET_LIST, 0, 1, 1, false);
ReportRichView->RichViewEdit->AddNL("text", RV_LIST_ITEM_TEXT, -1 ...
ReportRichView->RichViewEdit->AddNL("My list:", RV_TEXT, RV_TEXT);
ReportRichView->RichViewEdit->SetListMarkerInfo(-1, RV_BULLET_LIST, 0, 1, 1, false);
ReportRichView->RichViewEdit->AddNL("text", RV_LIST_ITEM_TEXT, -1 ...