Enum HorizontalAlignment

हॉरिज़ॉन्टलअलाइनमेंट

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

किसी एनम को कॉल करने के लिए, उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल किया जाता है. उदाहरण के लिए, DocumentApp.HorizontalAlignment.LEFT.

Paragraph कॉन्टेंट के अलाइनमेंट में बदलाव करने के लिए, HorizontalAlignment एनोटेशन का इस्तेमाल करें.

const body =
    DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody();

// Insert a paragraph and a table at the start of the tab.
const par1 = body.insertParagraph(0, 'Center');
const table = body.insertTable(1, [['Left', 'Right']]);
const par2 = table.getCell(0, 0).getChild(0).asParagraph();
const par3 = 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);

प्रॉपर्टी

प्रॉपर्टीटाइपब्यौरा
LEFTEnumबाईं ओर अलाइन करने का विकल्प.
CENTEREnumबीच में अलाइन करने का विकल्प.
RIGHTEnumदाईं ओर अलाइन करने का विकल्प.
JUSTIFYEnumजस्टिफ़ाई-अलाइनमेंट विकल्प.