Gets or sets the symbol character for a bulleted list. It must be a value from the Windows Symbol character set.

Syntax

public char BulletCharacter { get; set; }
Public Property BulletCharacter() As Char

Examples

The following example shows how to create a new ListFormat with a defined bullet character and how to apply it at the current input position.

TXTextControl.ListFormat lf = new TXTextControl.ListFormat();
lf.Type = TXTextControl.ListType.Numbered;
lf.FirstNumber = 5;
lf.BulletCharacter = '>';

textControl1.Selection.ListFormat = lf;
Dim lf As TXTextControl.ListFormat = New TXTextControl.ListFormat()
lf.Type = TXTextControl.ListType.Numbered
lf.FirstNumber = 5
lf.BulletCharacter = ">"

textControl1.Selection.ListFormat = lf

Remarks

The property's default value is the B7 (hexadecimal) character of the Windows Symbol character set.

The property returns its default value when the text selection contains multiple paragraphs with different bullet characters or when the text selection does not contain a bulleted list. The Selection.IsCommonValueSelected method can be used to check for mixed attributes.