MarkerType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the kind of characters used to mark the item paragraphs in a list.
public enum class MarkerType
/// [Windows.Foundation.Metadata.Version(1)]
enum class MarkerType
[Windows.Foundation.Metadata.Version(1)]
public enum MarkerType
var value = Microsoft.UI.Text.MarkerType.undefined
Public Enum MarkerType
- Inheritance
-
MarkerType
- Attributes
Fields
| Name | Value | Description |
|---|---|---|
| Undefined | 0 | The list type is not defined. |
| None | 1 | Not a list paragraph. |
| Bullet | 2 | The list uses bullets (character code 0x2022). |
| Arabic | 3 | The list is numbered with Arabic numerals (0, 1, 2, ...). |
| LowercaseEnglishLetter | 4 | The list is ordered with lowercase letters (a, b, c, ...). |
| UppercaseEnglishLetter | 5 | The list is ordered with uppercase letters (A, B, C, ...). |
| LowercaseRoman | 6 | The list is ordered with lowercase Roman letters (i, ii, iii, ...). |
| UppercaseRoman | 7 | The list is ordered with uppercase Roman letters (I, II, III, ...). |
| UnicodeSequence | 8 | The value returned by ITextParagraphFormat.ListStart is treated as the first code in a Unicode sequence. |
| CircledNumber | 9 | The list is ordered with Unicode circled numbers |
| BlackCircleWingding | 10 | The list is ordered with Wingdings black circled digits |
| WhiteCircleWingding | 11 | The list is ordered with Wingdings white circled digits |
| ArabicWide | 12 | Full-width ASCII (0, 1, 2, 3, …). |
| SimplifiedChinese | 13 | Chinese with 十 only in items 10 through 99 (一, 二, 三, 四, …). |
| TraditionalChinese | 14 | Chinese with 十 only in items 10 through 19. |
| JapanSimplifiedChinese | 15 | Chinese with a full-width period, no 十. |
| JapanKorea | 16 | Chinese with no 十. |
| ArabicDictionary | 17 | Arabic alphabetic ( أ ,ب ,ت ,ث ,…). |
| ArabicAbjad | 18 | Arabic abjadi ( أ ,ب ,ج ,د ,…). |
| Hebrew | 19 | Hebrew alphabet (א, ב, ג, ד, …). |
| ThaiAlphabetic | 20 | Thai alphabetic (ก, ข,ค, ง, …). |
| ThaiNumeric | 21 | Thai numbers (๑, ๒,๓, ๔, …). |
| DevanagariVowel | 22 | Devanāgarī vowels (अ, आ, इ, ई, …). |
| DevanagariConsonant | 23 | Devanāgarī consonants (क, ख, ग, घ, …). |
| DevanagariNumeric | 24 | Devanāgarī numbers (१, २, ३, ४, …). |


