Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
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.
constbody=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.consttext='Apps Script';consta=body.getText().indexOf(text);constb=a+text.length-1;body.editAsText().setFontFamily(a,b,DocumentApp.FontFamily.COMIC_SANS_MS);
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 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."]]],[]]