संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
हॉरिज़ॉन्टलअलाइनमेंट
हॉरिज़ॉन्टल अलाइनमेंट के इस्तेमाल किए जा सकने वाले टाइप की सूची.
किसी एनम को कॉल करने के लिए, उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल किया जाता है. उदाहरण के लिए,
DocumentApp.HorizontalAlignment.LEFT.
Paragraph कॉन्टेंट के अलाइनमेंट में बदलाव करने के लिए, HorizontalAlignment एनोटेशन का इस्तेमाल करें.
constbody=DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody();// Insert a paragraph and a table at the start of the tab.constpar1=body.insertParagraph(0,'Center');consttable=body.insertTable(1,[['Left','Right']]);constpar2=table.getCell(0,0).getChild(0).asParagraph();constpar3=table.getCell(0,0).getChild(0).asParagraph();// Center align the first paragraph.par1.setAlignment(DocumentApp.HorizontalAlignment.CENTER);// Left align the first cell.par2.setAlignment(DocumentApp.HorizontalAlignment.LEFT);// Right align the second cell.par3.setAlignment(DocumentApp.HorizontalAlignment.RIGHT);
[[["समझने में आसान है","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-12-22 (UTC) को अपडेट किया गया."],[[["`HorizontalAlignment` is used to set the horizontal alignment of paragraph content within Google Docs."],["It provides options for left, center, right, and justify alignment through its properties (`LEFT`, `CENTER`, `RIGHT`, `JUSTIFY`)."],["You can access these alignment options using the syntax `DocumentApp.HorizontalAlignment.ALIGNMENT_TYPE`, where `ALIGNMENT_TYPE` is one of the properties mentioned above."]]],[]]