受支持的字形类型的枚举。
如需调用枚举,您可以调用其父类、名称和属性。例如
DocumentApp.GlyphType.BULLET
。
使用 Glyph
枚举设置列表项的项目符号类型。
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);
属性
属性 | 类型 | 说明 |
---|---|---|
BULLET | Enum | 默认的圆形填充圆点。 |
HOLLOW_BULLET | Enum | 空心子弹。 |
SQUARE_BULLET | Enum | 方形项目符号。 |
NUMBER | Enum | 基于数字的项目符号。 |
LATIN_UPPER | Enum | 拉丁大写圆点。 |
LATIN_LOWER | Enum | 小写拉丁文数字符号。 |
ROMAN_UPPER | Enum | 罗马数字,大写圆点。 |
ROMAN_LOWER | Enum | 罗马数字,小写圆点。 |