संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
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);
[[["समझने में आसान है","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-09-13 (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."]]],[]]