Enum FontFamily

फ़ॉन्टफ़ैमिली

अब काम नहीं करता. getFontFamily() और setFontFamily(String) तरीके अब इस एनम के बजाय, फ़ॉन्ट के लिए स्ट्रिंग के नाम का इस्तेमाल करते हैं. हालांकि, यह एनम अब काम नहीं करता, लेकिन यह पुरानी स्क्रिप्ट के साथ काम करने के लिए उपलब्ध रहेगा.

इस्तेमाल किए जा सकने वाले फ़ॉन्ट की सूची.

टेक्स्ट, एलिमेंट या दस्तावेज़ की रेंज के लिए फ़ॉन्ट सेट करने के लिए, FontFamily एनोटेशन का इस्तेमाल करें.

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