קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
VerticalAlignment
ספירה של סוגי היישור האנכי הנתמכים.
כדי לקרוא ל-enum, קוראים למחלקה ההורה, לשם ולמאפיין שלו. לדוגמה,
DocumentApp.VerticalAlignment.BOTTOM.
משתמשים בספירה VerticalAlignment כדי להגדיר את היישור האנכי של תאים בטבלה.
varbody=DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody();//Appendtablecontainingtwocells.vartable=body.appendTable([['Top','Center','Bottom']]);//Alignthefirstcell's contents to the top.table.getCell(0,0).setVerticalAlignment(DocumentApp.VerticalAlignment.TOP);//Alignthesecondcell's contents to the center.table.getCell(0,1).setVerticalAlignment(DocumentApp.VerticalAlignment.CENTER);//Alignthethirdcell's contents to the bottom.table.getCell(0,2).setVerticalAlignment(DocumentApp.VerticalAlignment.BOTTOM);
[[["התוכן קל להבנה","easyToUnderstand","thumb-up"],["התוכן עזר לי לפתור בעיה","solvedMyProblem","thumb-up"],["סיבה אחרת","otherUp","thumb-up"]],[["חסרים לי מידע או פרטים","missingTheInformationINeed","thumb-down"],["התוכן מורכב מדי או עם יותר מדי שלבים","tooComplicatedTooManySteps","thumb-down"],["התוכן לא עדכני","outOfDate","thumb-down"],["בעיה בתרגום","translationIssue","thumb-down"],["בעיה בדוגמאות/בקוד","samplesCodeIssue","thumb-down"],["סיבה אחרת","otherDown","thumb-down"]],["עדכון אחרון: 2024-08-21 (שעון UTC)."],[[["`VerticalAlignment` is used to define how content is vertically aligned within a table cell."],["It offers three options: `TOP`, `CENTER`, and `BOTTOM` for aligning content to the top, center, or bottom of the cell, respectively."],["You can set the vertical alignment of a table cell using `DocumentApp.VerticalAlignment` and the desired alignment property within your Apps Script code."]]],[]]