Enum GlyphType

字形类型

受支持的字形类型的枚举。

如需调用枚举,您可以调用其父类、名称和属性。例如 DocumentApp.GlyphType.BULLET

使用 GlyphType 枚举设置列表项的项目符号类型。

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

属性

属性类型说明
BULLETEnum默认的圆形填充圆点。
HOLLOW_BULLETEnum空心子弹。
SQUARE_BULLETEnum方形项目符号。
NUMBEREnum基于数字的项目符号。
LATIN_UPPEREnum拉丁大写圆点。
LATIN_LOWEREnum小写拉丁文数字符号。
ROMAN_UPPEREnum罗马数字,大写圆点。
ROMAN_LOWEREnum罗马数字,小写圆点。