表示支持的图片对齐类型的枚举。对齐类型可从
FormApp.Alignment
。
如需调用枚举,您需要调用其父类、名称和属性。例如
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);
属性
属性 | 类型 | 说明 |
---|---|---|
LEFT | Enum | 将图片与表单左侧对齐。 |
CENTER | Enum | 将图片与表单中心对齐。 |
RIGHT | Enum | 将图片与表单右侧对齐。 |