TextMarkerStyle Enum
Definition
Describes the appearance of a list item's bullet style.
public enum class TextMarkerStyle
public enum TextMarkerStyle
type TextMarkerStyle =
Public Enum TextMarkerStyle
- Inheritance
Fields
Box | 4 | A solid square box. |
Circle | 2 | A hollow disc circle. |
Decimal | 9 | A decimal starting with the number one. For example, 1, 2, and 3. The decimal value is automatically incremented for each item added to the list. |
Disc | 1 | A solid disc circle. |
LowerLatin | 7 | A lowercase ASCII character starting with the letter a. For example, a, b, and c. The character value is automatically incremented for each item added to the list. |
LowerRoman | 5 | A lowercase Roman numeral starting with the numeral i. For example, i, ii, iii, and iv. The numeral is automatically incremented for each item added to the list. |
None | 0 | No marker. |
Square | 3 | A hollow square shape. |
UpperLatin | 8 | An uppercase ASCII character starting with the letter A. For example, A, B, and C. The character value is automatically incremented for each item added to the list. |
UpperRoman | 6 | An uppercase Roman numeral starting with the numeral I. For example, I, II, III, and IV. The numeric value is automatically incremented for each item added to the list. |
Examples
The following example shows how to create a TextMarkerStyle:
List list = new List();
list.MarkerStyle = TextMarkerStyle.Box;
Dim list As New List()
list.MarkerStyle = TextMarkerStyle.Box
<List MarkerStyle="Box">
<ListItem>
<Paragraph>Box</Paragraph>
</ListItem>
</List>
Remarks
The MarkerStyle property of a List can be used to define the bullet style for each item in the list. The bullet style can be a graphic element or an alpha-numeric value.