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 | Arial 字体系列。 |
ARIAL_BLACK | Enum | Arial 黑色字体系列。 |
ARIAL_NARROW | Enum | Arial 窄字体系列。 |
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 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-08-22。
[null,null,["最后更新时间 (UTC):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."]]],[]]