Enum FontFamily

YazıTipi

Kullanımdan kaldırıldı. getFontFamily() ve setFontFamily(String) yöntemleri artık bu enum yerine yazı tipleri için dize adları kullanıyor. Bu enum'un desteği sonlandırılmış olsa da eski komut dosyalarıyla uyumluluk için kullanılabilir olmaya devam edecektir.

Desteklenen yazı tiplerinin listesi.

Bir metin, öğe veya belge aralığı için yazı tipini ayarlamak üzere FontFamily numaralandırmasını kullanın.

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);