AI-generated Key Takeaways
-
FormApp.Alignment
is an enum used to define the alignment of images within a Google Form. -
Image alignment options include
LEFT
,CENTER
, andRIGHT
, which can be accessed usingFormApp.Alignment.LEFT
,FormApp.Alignment.CENTER
, andFormApp.Alignment.RIGHT
respectively. -
You can set the alignment of an image item in your form using the
setAlignment()
method and passing in the desiredFormApp.Alignment
property.
An enum representing the supported types of image alignment. Alignment types can be accessed from
Form
.
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 const form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz'); const img = UrlFetchApp.fetch('https://www.google.com/images/srpr/logo4w.png'); form.addImageItem().setImage(img).setAlignment(FormApp.Alignment.CENTER);
Properties
Property | Type | Description |
---|---|---|
LEFT | Enum | Align the image to the left side of the form. |
CENTER | Enum | Align the image to the center of the form. |
RIGHT | Enum | Align the image to the right side of the form. |