Enum Alignment
对齐方式
表示支持的图片对齐类型的枚举。对齐类型可从
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 | 将图片与表单右侧对齐。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-09-13。
[null,null,["最后更新时间 (UTC):2024-09-13。"],[[["`FormApp.Alignment` is an enum used to define the alignment of images within a Google Form."],["Image alignment options include `LEFT`, `CENTER`, and `RIGHT`, which can be accessed using `FormApp.Alignment.LEFT`, `FormApp.Alignment.CENTER`, and `FormApp.Alignment.RIGHT` respectively."],["You can set the alignment of an image item in your form using the `setAlignment()` method and passing in the desired `FormApp.Alignment` property."]]],[]]