Enum FontFamily
FontFamily
非推奨。getFontFamily()
メソッドと setFontFamily(String)
メソッドで 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 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-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."]]],[]]