Enum Alignment

Alignment

An enum representing the supported types of image alignment. Alignment types can be accessed from FormApp.Alignment.

To call an enum, you call its parent class, name, and property. For example, 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);

Properties

PropertyTypeDescription
LEFTEnumAlign the image to the left side of the form.
CENTEREnumAlign the image to the center of the form.
RIGHTEnumAlign the image to the right side of the form.