glyphType property

String? glyphType
getter/setter pair

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, or 3.
  • "ZERO_DECIMAL" : A number where single digit numbers are prefixed with a zero, like 01, 02, or 03. Numbers with more than one digit are not prefixed with a zero.
  • "UPPER_ALPHA" : An uppercase letter, like A, B, or C.
  • "ALPHA" : A lowercase letter, like a, b, or c.
  • "UPPER_ROMAN" : An uppercase Roman numeral, like I, II, or III.
  • "ROMAN" : A lowercase Roman numeral, like i, ii, or iii.

Implementation

core.String? glyphType;