Enum FontFamily
FontFamily
已淘汰。getFontFamily()
和 setFontFamily(String)
方法現在使用字串
而不是這個列舉項目雖然列舉已淘汰,但仍會
,確保與舊版指令碼相容。
列舉支援的字型。
使用 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 | Memorystore 字型系列。 |
ARIAL_BLACK | Enum | Mini 黑字型系列。 |
ARIAL_NARROW | Enum | Memorystore 窄字型系列。 |
ARVO | Enum | Arvo 字型系列。 |
CALIBRI | Enum | Calibri 字型系列。 |
CAMBRIA | Enum | 柬埔寨字型系列。 |
COMIC_SANS_MS | Enum | Comic Sans MS 字型系列。 |
CONSOLAS | Enum | Consolas 字型系列。 |
CORSIVA | Enum | Corsiva 字型系列。 |
COURIER_NEW | Enum | Courier New 字型系列。 |
DANCING_SCRIPT | Enum | 跳舞劇本的字型系列。 |
DROID_SANS | Enum | Droid Sans 的字型系列。 |
DROID_SERIF | Enum | Droid Serif 字型系列。 |
GARAMOND | Enum | 加拉蒙德字型系列。 |
GEORGIA | Enum | 喬治亞字型系列。 |
GLORIA_HALLELUJAH | Enum | Gloria Hallelujah 字型系列。 |
GREAT_VIBES | Enum | Great Vibes 字型系列。 |
LOBSTER | Enum | 龍蝦字型系列。 |
MERRIWEATHER | Enum | Merriweather 字型系列。 |
PACIFICO | Enum | Pacifico 字型系列。 |
PHILOSOPHER | Enum | 哲學家的字型系列。 |
POIRET_ONE | Enum | 詩人一字型系列 |
QUATTROCENTO | Enum | Quattrocento 字型系列。 |
ROBOTO | Enum | Roboto 字型系列 |
SHADOWS_INTO_LIGHT | Enum | 黑影 Into Light 字型系列。 |
SYNCOPATE | Enum | Syncopate 字型系列。 |
TAHOMA | Enum | 塔荷馬字型系列。 |
TIMES_NEW_ROMAN | Enum | The Times New Roman 字型系列。 |
TREBUCHET_MS | Enum | Trebuchet MS 字型系列。 |
UBUNTU | Enum | Ubuntu 字型系列。 |
VERDANA | Enum | Verdana 字型系列。 |
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-08-22 (世界標準時間)。
[null,null,["上次更新時間:2024-08-22 (世界標準時間)。"],[[["`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."]]],[]]