Enum VerticalAlignment
উল্লম্ব সারিবদ্ধকরণ সমর্থিত উল্লম্ব প্রান্তিককরণ প্রকারের একটি গণনা।
একটি enum কল করার জন্য, আপনি তার পিতামাতার শ্রেণী, নাম এবং সম্পত্তি কল করুন। উদাহরণস্বরূপ, DocumentApp.VerticalAlignment.BOTTOM
।
টেবিল ঘরের উল্লম্ব প্রান্তিককরণ সেট করতে VerticalAlignment
গণনা ব্যবহার করুন।
var body = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody();
// Append table containing two cells.
var table = body.appendTable([['Top', 'Center', 'Bottom']]);
// Align the first cell's contents to the top.
table.getCell(0, 0).setVerticalAlignment(DocumentApp.VerticalAlignment.TOP);
// Align the second cell's contents to the center.
table.getCell(0, 1).setVerticalAlignment(DocumentApp.VerticalAlignment.CENTER);
// Align the third cell's contents to the bottom.
table.getCell(0, 2).setVerticalAlignment(DocumentApp.VerticalAlignment.BOTTOM);
বৈশিষ্ট্য
সম্পত্তি | টাইপ | বর্ণনা |
---|
BOTTOM | Enum | নীচের প্রান্তিককরণ বিকল্প। |
CENTER | Enum | কেন্দ্র-সারিবদ্ধকরণ বিকল্প। |
TOP | Enum | শীর্ষ প্রান্তিককরণ বিকল্প। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-01-11 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-01-11 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."]]],["`VerticalAlignment` enum sets the vertical alignment of table cells in a document. It's accessed via `DocumentApp.VerticalAlignment`. Available options are `BOTTOM`, `CENTER`, and `TOP`. To use it, call `setVerticalAlignment()` on a table cell object with the desired alignment type. The example code demonstrates creating a table with three cells and aligning their content to the top, center, and bottom, respectively.\n"]]