Stay organized with collections
Save and categorize content based on your preferences.
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 the GlyphType enumeration to set the bullet type for list items.
const body =
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);
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-11-26 UTC."],[[["`GlyphType` is an enumeration used to specify the type of bullet or symbol used in list items within Google Docs."],["You can use the `GlyphType` enumeration with the `setGlyphType()` method to change the bullet style of list items."],["Several predefined glyph types are available, including `BULLET`, `HOLLOW_BULLET`, `SQUARE_BULLET`, `NUMBER`, `LATIN_UPPER`, `LATIN_LOWER`, `ROMAN_UPPER`, and `ROMAN_LOWER`."],["To call a specific glyph type, use the syntax `DocumentApp.GlyphType.[GlyphTypeName]`, for example, `DocumentApp.GlyphType.BULLET` for a standard bullet."]]],[]]