Enum GlyphType

GlypheType

Énumération des types de glyphes compatibles.

Pour appeler un énumération, vous devez appeler sa classe parente, son nom et sa propriété. Par exemple, DocumentApp.GlyphType.BULLET.

Utilisez l'énumération GlyphType pour définir le type de puce pour les éléments de liste.

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);

Propriétés

PropriétéTypeDescription
BULLETEnumPuce circulaire et remplie par défaut.
HOLLOW_BULLETEnumUne balle creuse.
SQUARE_BULLETEnumPuce carrée.
NUMBEREnumPuces basées sur des nombres
LATIN_UPPEREnumPoint d'exclamation majuscule latin.
LATIN_LOWEREnumPoint d'exclamation en minuscules latines.
ROMAN_UPPEREnumChiffre romain, puce majuscule.
ROMAN_LOWEREnumChiffre romain, puce minuscule.