Enum FontFamily
Rodzinaczcionek
Wycofany. Metody getFontFamily()
i setFontFamily(String)
używają teraz nazw czcionek w postaci ciągów znaków zamiast tej listy. Chociaż ta wyliczona lista jest wycofana, pozostanie dostępna ze względu na zgodność ze starszymi skryptami.
Wyliczenie obsługiwanych czcionek.
Użyj wyliczenia FontFamily
, aby ustawić czcionkę dla zakresu tekstu, elementu lub dokumentu.
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);
Wycofane właściwości
Właściwość | Typ | Opis |
AMARANTH | Enum | Rodzina czcionek Amaranth. |
ARIAL | Enum | Rodzina czcionek Arial. |
ARIAL_BLACK | Enum | Rodzina czcionek Arial Black. |
ARIAL_NARROW | Enum | Rodzina czcionek Arial Narrow. |
ARVO | Enum | Rodzina czcionek Arvo. |
CALIBRI | Enum | Rodzina czcionek Calibri. |
CAMBRIA | Enum | Rodzina czcionek Cambria. |
COMIC_SANS_MS | Enum | Rodzina czcionek Comic Sans MS. |
CONSOLAS | Enum | Rodzina czcionek Consolas. |
CORSIVA | Enum | Rodzina czcionek Corsiva. |
COURIER_NEW | Enum | Rodzina czcionek Courier New. |
DANCING_SCRIPT | Enum | Rodzina czcionek Dancing Script. |
DROID_SANS | Enum | Rodzina czcionek Droid Sans. |
DROID_SERIF | Enum | Rodzina czcionek Droid Serif. |
GARAMOND | Enum | Rodzina czcionek Garamond. |
GEORGIA | Enum | Rodzina czcionek Georgia. |
GLORIA_HALLELUJAH | Enum | Rodzina czcionek Gloria Hallelujah. |
GREAT_VIBES | Enum | Rodzina czcionek Great Vibes. |
LOBSTER | Enum | Rodzina czcionek Lobster. |
MERRIWEATHER | Enum | Rodzina czcionek Merriweather. |
PACIFICO | Enum | Rodzina czcionek Pacifico. |
PHILOSOPHER | Enum | Rodzina czcionek Philosopher. |
POIRET_ONE | Enum | Rodzina czcionek Poiret One |
QUATTROCENTO | Enum | Rodzina czcionek Quattrocento. |
ROBOTO | Enum | Rodzina czcionek Roboto |
SHADOWS_INTO_LIGHT | Enum | Rodzina czcionek Shadows Into Light. |
SYNCOPATE | Enum | Rodzina czcionek Syncopate. |
TAHOMA | Enum | Rodzina czcionek Tahoma. |
TIMES_NEW_ROMAN | Enum | Rodzina czcionek Times New Roman. |
TREBUCHET_MS | Enum | Rodzina czcionek Trebuchet MS. |
UBUNTU | Enum | Rodzina czcionek Ubuntu. |
VERDANA | Enum | Rodzina czcionek Verdana. |
O ile nie stwierdzono inaczej, treść tej strony jest objęta licencją Creative Commons – uznanie autorstwa 4.0, a fragmenty kodu są dostępne na licencji Apache 2.0. Szczegółowe informacje na ten temat zawierają zasady dotyczące witryny Google Developers. Java jest zastrzeżonym znakiem towarowym firmy Oracle i jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2024-12-22 UTC.
[null,null,["Ostatnia aktualizacja: 2024-12-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."]]],[]]