इस्तेमाल किए जा सकने वाले वर्टिकल अलाइनमेंट टाइप की सूची.
किसी enum को कॉल करने के लिए, आपको उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल करना होगा. उदाहरण के लिए,
DocumentApp.VerticalAlignment.BOTTOM.
टेबल की सेल का वर्टिकल अलाइनमेंट सेट करने के लिए, VerticalAlignment की गिनती का इस्तेमाल करें.
const body = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody(); // Append table containing two cells. const 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 | टॉप-अलाइनमेंट विकल्प. |