glyphType property
The type of glyph used by bullets when paragraphs at this level of nesting are ordered.
The glyph type determines the type of glyph used to replace placeholders
within the glyph_format when paragraphs at this level of nesting are
ordered. For example, if the nesting level is 0, the glyph_format is %0.
and the glyph type is DECIMAL, then the rendered glyph would replace the
placeholder %0
in the glyph format with a number corresponding to list
item's order within the list.
Possible string values are:
- "GLYPH_TYPE_UNSPECIFIED" : The glyph type is unspecified or unsupported.
- "NONE" : An empty string.
- "DECIMAL" : A number, like
1
,2
, or3
. - "ZERO_DECIMAL" : A number where single digit numbers are prefixed with a
zero, like
01
,02
, or03
. Numbers with more than one digit are not prefixed with a zero. - "UPPER_ALPHA" : An uppercase letter, like
A
,B
, orC
. - "ALPHA" : A lowercase letter, like
a
,b
, orc
. - "UPPER_ROMAN" : An uppercase Roman numeral, like
I
,II
, orIII
. - "ROMAN" : A lowercase Roman numeral, like
i
,ii
, oriii
.
Implementation
core.String? glyphType;