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);
พร็อพเพอร์ตี้ที่เลิกใช้งานแล้ว
พร็อพเพอร์ตี้ | ประเภท | คำอธิบาย |
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 และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2024-08-22 UTC
[null,null,["อัปเดตล่าสุด 2024-08-22 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."]]],[]]