تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
VerticalAlignment
تعداد لأنواع المحاذاة العمودية المتوافقة.
لاستدعاء تعداد، يمكنك استدعاء الفئة الأصل والاسم والخاصية. مثلاً:
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);
تاريخ التعديل الأخير: 2024-08-21 (حسب التوقيت العالمي المتفَّق عليه)
[[["يسهُل فهم المحتوى.","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 (حسب التوقيت العالمي المتفَّق عليه)"],[[["`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."]]],[]]