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 | מיישרים את התמונה לצד ימין של הטופס. |
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 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."]]],[]]