Enum GlyphType

GlyphType

การแจงนับของประเภทรูปอักขระที่รองรับ

หากต้องการเรียก enum คุณจะต้องเรียกคลาส ชื่อ และพร็อพเพอร์ตี้ระดับบนสุด เช่น DocumentApp.GlyphType.BULLET

ใช้การแจงนับ GlyphType เพื่อตั้งค่าประเภทหัวข้อย่อยสำหรับรายการ

var 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สัญลักษณ์หัวข้อย่อยเลขโรมันตัวพิมพ์เล็ก