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