Enum VerticalAlignment

VerticalAlignment

इस्तेमाल किए जा सकने वाले वर्टिकल अलाइनमेंट टाइप की सूची.

किसी Enum को कॉल करने के लिए, आपको उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल करना होता है. उदाहरण के लिए, DocumentApp.VerticalAlignment.BOTTOM.

टेबल सेल का वर्टिकल अलाइनमेंट सेट करने के लिए, VerticalAlignment इन्यूरेशन का इस्तेमाल करें.

var body = DocumentApp.getActiveDocument().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);

प्रॉपर्टी

प्रॉपर्टीTypeब्यौरा
BOTTOMEnumसबसे नीचे अलाइनमेंट विकल्प.
CENTEREnumबीच में अलाइन करने का विकल्प.
TOPEnumऊपर अलाइनमेंट का विकल्प.