Enum FontFamily
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
FontFamily
เลิกใช้งานแล้ว ตอนนี้เมธอด getFontFamily() และ setFontFamily(String) ใช้สตริง
แทน 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 | ชุดแบบอักษรจอร์เจีย |
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 และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2026-04-13 UTC
[null,null,["อัปเดตล่าสุด 2026-04-13 UTC"],[],["`FontFamily` enumeration, though deprecated, remains for older script compatibility. It lists supported font options like `ARIAL`, `CALIBRI`, and `COMIC_SANS_MS`. The methods `getFontFamily()` and `setFontFamily(String)` now use string names, and `FontFamily` is used to apply a specific font to document text, paragraphs, or specific ranges within text, via methods like `setFontFamily()`. There are multiple examples showing the usage of the font `FontFamily`.\n"]]