|
List Markers (Paragraph Bullets & Numbering) |
Top Previous Next |
|
This is a very special item type representing paragraph bullet or number. Style of this item type: rvsListMarker (-11) See also: numbered sequences. Properties of List Markers TRVStyle component has a collection of list styles (ListStyles). Each list style contains a collection of list levels (Levels property). List level defines the most of list properties. List markers is a special kind of items. They are inserted with special functions. They are always inserted at the beginning of paragraph. They have the following properties:
List Markers Operations Methods of TCustomRichView: Methods of TCustomRichViewEdit: Saving and Loading For list levels with ImageLists: ImageLists themselves are not saved in RVF. RichView stores TImageList.Tag. When loading, OnRVFImageListNeeded occurs allowing you to provide an image-list. HTM Export, rvsoMarkersAsText is not in Options of SaveHTML or SaveHTMLEx Lists are saved using <ul> and <ol> HTML tags. Export using CSS (SaveHTMLEx): CSS of lists are inserted directly in HTML.
Indents are saved, but not very accurately. Export without CSS (SaveHTML)
Indents are not saved. HTML Export, rvsoMarkersAsText is in Options Markers are saved without using special HTML keywords for lists (like <ol>, <ul>, <li>). Font and format strings settings are respected. Saving with CSS (SaveHTMLEx): LeftIndent and MarkerIndent are retained. FirstIndent are retained for non-hanging markers only (MarkerIndent>=LeftIndent). Saving without CSS (SaveHTML): all indents are ignored. Generally, HTML files saved with this option look closer to the original. Demo Projects
|