Enum Alignment

Alignement

Énumération représentant les types d'alignement d'image acceptés. Les types d'alignement sont accessibles depuis FormApp.Alignment

Pour appeler une énumération, vous appelez sa classe parente, son nom et sa propriété. Par exemple, FormApp.Alignment.LEFT.

// Open a form by ID and add a new image item with alignment
var form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz');
var img = UrlFetchApp.fetch('https://www.google.com/images/srpr/logo4w.png');
form.addImageItem()
    .setImage(img)
    .setAlignment(FormApp.Alignment.CENTER);

Propriétés

PropriétéTypeDescription
LEFTEnumAlignez l'image sur le côté gauche du formulaire.
CENTEREnumAlignez l'image au centre du formulaire.
RIGHTEnumAlignez l'image sur le côté droit du formulaire.