Enum Alignment
ความสอดคล้อง
Enum ที่แทนประเภทการปรับแนวรูปภาพที่รองรับ เข้าถึงประเภทการปรับแนวได้จาก
FormApp.Alignment
หากต้องการเรียก enum คุณจะต้องเรียกคลาส ชื่อ และพร็อพเพอร์ตี้ระดับบนสุด เช่น
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 Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2024-09-13 UTC
[null,null,["อัปเดตล่าสุด 2024-09-13 UTC"],[[["`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."]]],[]]