Eine Aufzählung der unterstützten Schriftzeichentypen.
Wenn Sie ein Enum aufrufen möchten, rufen Sie die übergeordnete Klasse, den Namen und die Eigenschaft auf. Beispiel:
DocumentApp.GlyphType.BULLET.
Verwenden Sie die Aufzählung GlyphType, um den Aufzählungspunkttyp für Listenelemente festzulegen.
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);
Attribute
Attribut
Typ
Beschreibung
BULLET
Enum
Die Standard-Aufzählungszeichen, kreisförmig und ausgefüllt.
HOLLOW_BULLET
Enum
Eine hohle Kugel.
SQUARE_BULLET
Enum
Ein quadratisches Aufzählungszeichen.
NUMBER
Enum
Eine nummerierte Aufzählung.
LATIN_UPPER
Enum
Ein lateinischer Aufzählungspunkt in Großbuchstaben.
LATIN_LOWER
Enum
Ein lateinischer Aufzählungspunkt in Kleinbuchstaben.
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Benötigte Informationen nicht gefunden","missingTheInformationINeed","thumb-down"],["Zu umständlich/zu viele Schritte","tooComplicatedTooManySteps","thumb-down"],["Nicht mehr aktuell","outOfDate","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Problem mit Beispielen/Code","samplesCodeIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 2024-12-22 (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."]]],[]]