Bullet/number format that produces plain text based on current list level indices.
Definition
Namespace:Telerik.Windows.Documents.Fixed.Model.Editing.Lists
Assembly:Telerik.Windows.Documents.Fixed.dll
Syntax:
C#
public class TextBulletNumberingFormat : IBulletNumberingFormat
Inheritance: objectTextBulletNumberingFormat
Implements:
Constructors
Initialize a text-based numbering format with a delegate that creates the textual bullet.
C#
public TextBulletNumberingFormat(Func<IListLevelsIndexer, string> getTextBullet)
The function that generates the text representation of the bullet based on the list levels indexer.
Methods
Create the bullet/number text and return it as a content element for placement.
C#
public PositionContentElement GetBulletNumberingElement(IListLevelsIndexer listLevelsIndexer)
The list levels indexer that provides current index information for each list level.
Returns:The position content element representing the bullet numbering, or null if no text is generated.
Implements: