| | useList | |
rtParagraphstyle Alignment Bullets FirstLineLeftMargin hasPageBreak Hide HideWhen As rtHideWhen isHidden InterLineSpacing keepTogether keepWithNext LeftMargin MarginType nsFont As rtFontstyle nsName nsUserName NumberedList propagateAll Pagination RightMargin SpacingAbove SpacingBelow Tabs As rtCollection useList
| version 1.5
Property Get/Set useList As Long Property used to define the List property of paragraph.
Checklist style: RT_PSTYLE_CHECKLIST - list displayed as checklist, must be applied only together with checked/unchecked values below RT_PSTYLE_CHECKED - add this to display checklist checked RT_PSTYLE_UNCHECKED - add this to display checklist unchecked Use either RT_PSTYLE_CHECKLIST + RT_PSTYLE_UNCHECKED or RT_PSTYLE_CHECKLIST + RT_PSTYLE_CHECKED RT_PSTYLE_BULLET - round bullet; setting this value is equivalent of setting property Bullets =True RT_PSTYLE_CIRCLELIST - bullet list using circles RT_PSTYLE_SQUARELIST - bullet list using (filled) squares RT_PSTYLE_NUMBEREDLIST - numbered list; setting of this value is equivalent of setting property NumberedList =True Alphabetic numeration - variation of Numbered list: RT_PSTYLE_ROMAN_CAPS - roman capitals RT_PSTYLE_ROMAN - roman lowercase RT_PSTYLE_ALPHA_CAPS - alphabetic (English) capital case RT_PSTYLE_ALPHA - alphabetic lowercase Notes does interpret different style list as restart of numeration. Thus in case the last paragraph was RT_PSTYLE_NUMBEREDLIST (numbers 1., 2., 3.) and the next is RT_PSTYLE_ALPHA, the alphabetic list will continue the numeration of numeric list (will display D.). The solution to obtain independent numeration is either to enter a paragraph without numeration in between or provide different left margin. RT_PSTYLE_NOLIST - removes list
| |