文本对齐类型的枚举。
如需调用枚举,您需要调用其父类、名称和属性。例如
DocumentApp.TextAlignment.NORMAL
。
// Make the first character in the first paragraph of the active tab be superscript. var documentTab = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab(); var text = documentTab.getBody().getParagraphs()[0].editAsText(); text.setTextAlignment(0, 0, DocumentApp.TextAlignment.SUPERSCRIPT);
属性
属性 | 类型 | 说明 |
---|---|---|
NORMAL | Enum | 正常的文字对齐方式。 |
SUPERSCRIPT | Enum | 上标文本对齐方式。 |
SUBSCRIPT | Enum | 下标文本对齐方式。 |