Enum Alignment
对齐方式
表示支持的图片对齐类型的枚举。您可以通过 FormApp.Alignment
访问对齐方式类型。
如需调用枚举,您可以调用其父类、名称和属性。例如
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);
属性
属性 | 类型 | 说明 |
LEFT | Enum | 将图片对齐到表单的左侧。 |
CENTER | Enum | 将图片对齐到表单的中心。 |
RIGHT | Enum | 将图片对齐到表单右侧。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-12-02。
[null,null,["最后更新时间 (UTC):2024-12-02。"],[[["`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."]]],[]]