Enum Alignment Stay organized with collections Save and categorize content based on your preferences.
Page Summary
Alignment is an enum in Google Apps Script's FormApp representing supported image alignment types.
Alignment types can be accessed through
FormApp.Alignment.Specific alignment options include LEFT, CENTER, and RIGHT, each used to position images accordingly within a form.
The provided code example demonstrates how to open a form, fetch an image, and set its alignment to CENTER using the
setAlignmentmethod.
An enum representing the supported types of image alignment. Alignment types can be accessed fromForm.
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 alignmentconstform=FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz');constimg=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. |
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-12-11 UTC.