वर्टिकल अलाइनमेंट के काम करने वाले टाइप की सूची.
किसी एनम को कॉल करने के लिए, उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल किया जाता है. उदाहरण के लिए,
DocumentApp.VerticalAlignment.BOTTOM
.
टेबल सेल का वर्टिकल अलाइनमेंट सेट करने के लिए, Vertical
एनोटेशन का इस्तेमाल करें.
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 | सबसे ऊपर अलाइन करने का विकल्प. |