Enum NumberFormat

NumberFormat enumeration

Specifies the numbering format that can be used for a group of automatically numbered objects. Full list is specified on MSDN

public enum NumberFormat : byte

Values

NameValueDescription
DecimalNumbers0Specifies that the sequence shall consist of decimal numbering. Example: 1, 2, 3, …, 8, 9, 10, 11, 12, …, 18, 19, 20, 21.
UpperRoman1Specifies that the sequence shall consist of uppercase roman numerals. Example: I, II, III, IV, …, XVIII, XIX, XX, XXI.
LowerRoman2Specifies that the sequence shall consist of lowercase roman numerals. Example: i, ii, iii, iv, …, xviii, xix, xx, xxi.
UpperLetter3Specifies that the sequence shall consist of one or more occurrences of a single letter of the Latin alphabet in upper case. Example: A, B, C, …, Y, Z, AA, BB, CC, …, YY, ZZ, AAA, BBB, CCC.
LowerLetter4Specifies that the sequence shall consist of one or more occurrences of a single letter of the Latin alphabet in lower case. Example: a, b, c, …, y, z, aa, bb, cc, …, yy, zz, aaa, bbb, ccc.
TaiwaneseCounting33Specifies that the sequence shall consist of sequential numbers from the Taiwanese counting system.
TaiwaneseCountingThousand35Specifies that the sequence shall consist of sequential numbers from the Taiwanese counting thousand system.
ChineseCounting37Specifies that the sequence shall consist of sequential numbers from the Chinese counting system.
ChineseCountingThousand39Specifies that the sequence shall consist of sequential numbers from the Chinese counting thousand system.

See Also