Enum GlyphType

  • GlyphType is an enumeration defining supported glyph types for list items.

  • You can access specific glyph types by calling the parent class, name, and property, for example,DocumentApp.GlyphType.BULLET.

  • TheGlyphType enumeration is used to set the bullet type for list items.

  • Examples of supported glyph types includeBULLET,HOLLOW_BULLET,SQUARE_BULLET,NUMBER,LATIN_UPPER,LATIN_LOWER,ROMAN_UPPER, andROMAN_LOWER.

GlyphType

An enumeration of the supported glyph types.

To call an enum, you call its parent class, name, and property. For example,DocumentApp.GlyphType.BULLET.

Use theGlyphType enumeration to set the bullet type for list items.

constbody=DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody();// Insert at list item, with the default nesting level of zero.body.appendListItem('Item 1');// Append a second list item, with a nesting level of one, indented one inch.// The two items have different bullet glyphs.body.appendListItem('Item 2').setNestingLevel(1).setIndentStart(72).setGlyphType(DocumentApp.GlyphType.SQUARE_BULLET);

Properties

PropertyTypeDescription
BULLETEnumThe default bullet, circular and filled.
HOLLOW_BULLETEnumA hollow bullet.
SQUARE_BULLETEnumA square bullet.
NUMBEREnumA number based bullet.
LATIN_UPPEREnumA latin, uppercase bullet.
LATIN_LOWEREnumA latin, lowercase bullet.
ROMAN_UPPEREnumA roman numeral, uppercase bullet.
ROMAN_LOWEREnumA roman numeral, lowercase bullet.

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-12-11 UTC.