Enum FontFamily
ชุดแบบอักษร
เลิกใช้งานแล้ว ตอนนี้เมธอด getFontFamily()
และ setFontFamily(String)
ใช้ชื่อสตริงสำหรับแบบอักษรแทนการใช้ enum นี้ แม้ว่าเราจะเลิกใช้งาน Enum นี้แล้ว แต่ Enum นี้จะยังคงใช้งานได้เพื่อใช้งานร่วมกับสคริปต์รุ่นเก่า
การแจกแจงแบบอักษรที่รองรับ
ใช้การแจกแจง FontFamily
เพื่อกำหนดแบบอักษรสำหรับข้อความ องค์ประกอบ หรือเอกสารช่วงหนึ่ง
const 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.
const text = 'Apps Script';
const a = body.getText().indexOf(text);
const b = a + text.length - 1;
body.editAsText().setFontFamily(a, b, DocumentApp.FontFamily.COMIC_SANS_MS);
พร็อพเพอร์ตี้ที่เลิกใช้งานแล้ว
พร็อพเพอร์ตี้ | ประเภท | คำอธิบาย |
AMARANTH | Enum | ชุดแบบอักษร Amaranth |
ARIAL | Enum | ชุดแบบอักษร Arial |
ARIAL_BLACK | Enum | ชุดแบบอักษร Arial Black |
ARIAL_NARROW | Enum | ชุดแบบอักษร Arial Narrow |
ARVO | Enum | ชุดแบบอักษร Arvo |
CALIBRI | Enum | ชุดแบบอักษร Calibri |
CAMBRIA | Enum | ชุดแบบอักษร Cambria |
COMIC_SANS_MS | Enum | ชุดแบบอักษร Comic Sans MS |
CONSOLAS | Enum | ชุดแบบอักษร Consolas |
CORSIVA | Enum | ชุดแบบอักษร Corsiva |
COURIER_NEW | Enum | ชุดแบบอักษร Courier New |
DANCING_SCRIPT | Enum | ชุดแบบอักษร Dancing Script |
DROID_SANS | Enum | ชุดแบบอักษร Droid Sans |
DROID_SERIF | Enum | ชุดแบบอักษร Droid Serif |
GARAMOND | Enum | ชุดแบบอักษร Garamond |
GEORGIA | Enum | ชุดแบบอักษร Georgia |
GLORIA_HALLELUJAH | Enum | ชุดแบบอักษร Gloria Hallelujah |
GREAT_VIBES | Enum | ชุดแบบอักษร Great Vibes |
LOBSTER | Enum | ชุดแบบอักษร Lobster |
MERRIWEATHER | Enum | ชุดแบบอักษร Merriweather |
PACIFICO | Enum | ชุดแบบอักษร Pacifico |
PHILOSOPHER | Enum | ชุดแบบอักษร Philosopher |
POIRET_ONE | Enum | ชุดแบบอักษร Poiret One |
QUATTROCENTO | Enum | ชุดแบบอักษร Quattrocento |
ROBOTO | Enum | ชุดแบบอักษร Roboto |
SHADOWS_INTO_LIGHT | Enum | ชุดแบบอักษร Shadows Into Light |
SYNCOPATE | Enum | ชุดแบบอักษร Syncopate |
TAHOMA | Enum | ชุดแบบอักษร Tahoma |
TIMES_NEW_ROMAN | Enum | ชุดแบบอักษร Times New Roman |
TREBUCHET_MS | Enum | ชุดแบบอักษร Trebuchet MS |
UBUNTU | Enum | ชุดแบบอักษร Ubuntu |
VERDANA | Enum | ชุดแบบอักษร Verdana |
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2024-12-03 UTC
[null,null,["อัปเดตล่าสุด 2024-12-03 UTC"],[[["`FontFamily` is deprecated and now uses string names for fonts instead of the enum, but remains for compatibility."],["This enum allows you to set the font for text ranges, elements, or entire Google Docs documents."],["Supported fonts include Arial, Calibri, Comic Sans MS, Times New Roman, Verdana, and many more."],["You can use methods like `setFontFamily()` within Google Apps Script to apply these fonts."]]],[]]