Enum FontFamily

FontFamily

Obsolète. Les méthodes getFontFamily() et setFontFamily(String) utilisent désormais une chaîne pour les polices au lieu de cette énumération. Bien que cette énumération soit obsolète, elle restera disponible pour assurer la compatibilité avec les scripts plus anciens.

Énumération des polices compatibles.

Utilisez l'énumération FontFamily pour définir la police d'une plage de texte, d'éléments ou document.

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