Enum FontFamily

FontFamily

เลิกใช้งานแล้ว ตอนนี้เมธอด getFontFamily() และ setFontFamily(String) ใช้สตริง แทน enum นี้ แม้ว่าจะมีการเลิกใช้งาน enum นี้แล้ว แต่ สามารถใช้ร่วมกับสคริปต์รุ่นเก่าได้

การแจกแจงแบบอักษรที่รองรับ

ใช้การแจงนับ FontFamily เพื่อกำหนดแบบอักษรสำหรับช่วงของข้อความ องค์ประกอบ หรือ เอกสาร

var body = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody();

// Insert a paragraph at the start of the document.
body.insertParagraph(0, "Hello, Apps Script!");

// Set the tab font to Calibri.
body.editAsText().setFontFamily(DocumentApp.FontFamily.CALIBRI);

// Set the first paragraph font to Arial.
body.getParagraphs()[0].setFontFamily(DocumentApp.FontFamily.ARIAL);

// Set "Apps Script" to Comic Sans MS.
var text = 'Apps Script';
var a = body.getText().indexOf(text);
var b = a + text.length - 1;
body.editAsText().setFontFamily(a, b, DocumentApp.FontFamily.COMIC_SANS_MS);