टेबल सेल को दिखाने वाला एलिमेंट. TableCell
हमेशा TableRow
में होता है और इसमें ListItem
, Paragraph
या Table
एलिमेंट हो सकते हैं. इसके लिए
दस्तावेज़ स्ट्रक्चर के बारे में ज़्यादा जानकारी के लिए, Google Docs के कॉन्टेंट को बड़ा करने के लिए गाइड देखें.
तरीके
तरीका | रिटर्न टाइप | संक्षिप्त विवरण |
---|---|---|
appendHorizontalRule() | HorizontalRule | नया HorizontalRule बनाता और जोड़ता है. |
appendImage(image) | InlineImage | यह तय किए गए इमेज ब्लॉब से एक नया InlineImage बनाता और जोड़ता है. |
appendImage(image) | InlineImage | दिए गए InlineImage को जोड़ता है. |
appendListItem(listItem) | ListItem | दिए गए ListItem को जोड़ता है. |
appendListItem(text) | ListItem | नया ListItem बनाता और जोड़ता है. |
appendParagraph(paragraph) | Paragraph | दिए गए Paragraph को जोड़ता है. |
appendParagraph(text) | Paragraph | नया Paragraph बनाता और जोड़ता है. |
appendTable() | Table | नया Table बनाता और जोड़ता है. |
appendTable(cells) | Table | तय सेल से एक नया Table जोड़ता है. |
appendTable(table) | Table | दिए गए Table को जोड़ता है. |
clear() | TableCell | एलिमेंट के कॉन्टेंट को हटाता है. |
copy() | TableCell | मौजूदा एलिमेंट की अलग की गई, डीप कॉपी दिखाता है. |
editAsText() | Text | बदलाव करने के लिए, मौजूदा एलिमेंट का Text वर्शन हासिल करता है. |
findElement(elementType) | RangeElement | बताए गए टाइप के डिसेंडेंट के लिए एलिमेंट की सामग्री खोजता है. |
findElement(elementType, from) | RangeElement | चुने गए टाइप के डिसेंडेंट के लिए एलिमेंट की सामग्री खोजता है, जिसकी शुरुआत
RangeElement बताया गया. |
findText(searchPattern) | RangeElement | रेगुलर एक्सप्रेशन का इस्तेमाल करके, तय किए गए टेक्स्ट पैटर्न के एलिमेंट के कॉन्टेंट की खोज करता है. |
findText(searchPattern, from) | RangeElement | दिए गए टेक्स्ट पैटर्न के लिए, एलिमेंट के कॉन्टेंट की खोज करता है. इसकी शुरुआत, दिए गए टेक्स्ट से होती है खोज के नतीजे. |
getAttributes() | Object | एलिमेंट के एट्रिब्यूट हासिल करता है. |
getBackgroundColor() | String | पृष्ठभूमि रंग को वापस लाता है. |
getChild(childIndex) | Element | बताए गए चाइल्ड इंडेक्स में चाइल्ड एलीमेंट को हासिल करता है. |
getChildIndex(child) | Integer | बताए गए चाइल्ड एलिमेंट के लिए चाइल्ड इंडेक्स फिर से लाता है. |
getColSpan() | Integer | कॉलम स्पैन की जानकारी दिखाता है, जो इस सेल में मौजूद टेबल सेल के कॉलम की संख्या है. |
getLinkUrl() | String | लिंक के यूआरएल को वापस लाता है. |
getNextSibling() | Element | यह एलिमेंट का अगला सिबलिंग एलिमेंट हासिल करता है. |
getNumChildren() | Integer | बच्चों की संख्या की जानकारी देता है. |
getPaddingBottom() | Number | पॉइंट के हिसाब से सबसे नीचे की पैडिंग (जगह) वापस हासिल करता है. |
getPaddingLeft() | Number | बिंदुओं में बाईं पैडिंग को वापस लाता है. |
getPaddingRight() | Number | पॉइंट में सही पैडिंग (जगह) हासिल करता है. |
getPaddingTop() | Number | पॉइंट के हिसाब से सबसे ऊपर की पैडिंग (जगह) वापस हासिल करता है. |
getParent() | ContainerElement | एलिमेंट के पैरंट एलिमेंट को हासिल करता है. |
getParentRow() | TableRow | मौजूदा TableCell वाली TableRow की जानकारी हासिल करता है. |
getParentTable() | Table | मौजूदा TableCell वाली Table की जानकारी हासिल करता है. |
getPreviousSibling() | Element | यह एलिमेंट के पिछले सिबलिंग एलिमेंट को हासिल करता है. |
getRowSpan() | Integer | पंक्ति स्पैन की जानकारी देता है, जो इस सेल में फैली टेबल सेल की पंक्तियों की संख्या है. |
getText() | String | एलिमेंट के कॉन्टेंट को टेक्स्ट स्ट्रिंग के तौर पर वापस लाता है. |
getTextAlignment() | TextAlignment | इससे टेक्स्ट अलाइनमेंट की सुविधा मिलती है. |
getType() | ElementType | एलिमेंट के ElementType को हासिल करता है. |
getVerticalAlignment() | VerticalAlignment | VerticalAlignment को वापस लाता है. |
getWidth() | Number | सेल वाले कॉलम की चौड़ाई को, पॉइंट में हासिल करता है. |
insertHorizontalRule(childIndex) | HorizontalRule | तय किए गए इंडेक्स में नया HorizontalRule बनाता है और उसे शामिल करता है. |
insertImage(childIndex, image) | InlineImage | तय की गई इमेज पर, दिए गए इमेज ब्लॉब से InlineImage बनाता है और जोड़ता है
इंडेक्स करें. |
insertImage(childIndex, image) | InlineImage | दिए गए InlineImage को तय इंडेक्स में शामिल करता है. |
insertListItem(childIndex, listItem) | ListItem | दिए गए ListItem को तय इंडेक्स में शामिल करता है. |
insertListItem(childIndex, text) | ListItem | तय किए गए इंडेक्स में नया ListItem बनाता है और उसे शामिल करता है. |
insertParagraph(childIndex, paragraph) | Paragraph | दिए गए Paragraph को तय इंडेक्स में शामिल करता है. |
insertParagraph(childIndex, text) | Paragraph | तय किए गए इंडेक्स में नया Paragraph बनाता है और उसे शामिल करता है. |
insertTable(childIndex) | Table | तय किए गए इंडेक्स में नया Table बनाता है और उसे शामिल करता है. |
insertTable(childIndex, cells) | Table | तय किए गए इंडेक्स में, तय किए गए सेल वाला नया Table बनाता है और उसे शामिल करता है. |
insertTable(childIndex, table) | Table | दिए गए Table को तय इंडेक्स में शामिल करता है. |
isAtDocumentEnd() | Boolean | यह तय करता है कि एलिमेंट, Document के आखिर में है या नहीं. |
merge() | TableCell | यह एलिमेंट को एक ही टाइप के पिछले सिबलिंग के साथ मर्ज करता है. |
removeChild(child) | TableCell | बताए गए चाइल्ड एलिमेंट को हटाता है. |
removeFromParent() | TableCell | एलिमेंट को इसकी पैरंट जगह से हटाता है. |
replaceText(searchPattern, replacement) | Element | सामान्य का उपयोग करके, दिए गए बदले हुए स्ट्रिंग से दिए गए लेख पैटर्न की सभी आवृत्तियां बदलता है एक्सप्रेशन के बारे में भी बताया गया है. |
setAttributes(attributes) | TableCell | एलिमेंट के एट्रिब्यूट सेट करता है. |
setBackgroundColor(color) | TableCell | बैकग्राउंड का रंग सेट करता है. |
setLinkUrl(url) | TableCell | लिंक का यूआरएल सेट करता है. |
setPaddingBottom(paddingBottom) | TableCell | सबसे नीचे की पैडिंग (जगह) को पॉइंट में सेट करता है. |
setPaddingLeft(paddingLeft) | TableCell | बाईं ओर की पैडिंग (जगह) को पॉइंट में सेट करता है. |
setPaddingRight(paddingRight) | TableCell | सही पैडिंग (जगह) को पॉइंट में सेट करता है. |
setPaddingTop(paddingTop) | TableCell | सबसे ऊपर की पैडिंग (जगह) को पॉइंट में सेट करता है. |
setText(text) | TableCell | कॉन्टेंट को सामान्य टेक्स्ट के तौर पर सेट करता है. |
setTextAlignment(textAlignment) | TableCell | टेक्स्ट अलाइनमेंट सेट करता है. |
setVerticalAlignment(alignment) | TableCell | वर्टिकल अलाइनमेंट सेट करता है. |
setWidth(width) | TableCell | मौजूदा सेल वाले कॉलम की चौड़ाई को, पॉइंट में सेट करता है. |
विस्तृत दस्तावेज़
appendHorizontalRule()
नया HorizontalRule
बनाता और जोड़ता है.
HorizontalRule
को नए Paragraph
में शामिल किया जाएगा.
वापसी का टिकट
HorizontalRule
— नया हॉरिज़ॉन्टल नियम
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
appendImage(image)
यह तय किए गए इमेज ब्लॉब से एक नया InlineImage
बनाता और जोड़ता है.
InlineImage
को नए Paragraph
में शामिल किया जाएगा.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
image | BlobSource | इमेज का डेटा |
वापसी का टिकट
InlineImage
— नई इमेज
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
appendImage(image)
दिए गए InlineImage
को जोड़ता है.
InlineImage
को नए Paragraph
में शामिल किया जाएगा.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
image | InlineImage | इमेज का डेटा |
वापसी का टिकट
InlineImage
— जोड़ी गई इमेज
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
appendListItem(listItem)
दिए गए ListItem
को जोड़ता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
listItem | ListItem | जोड़ने के लिए सूची आइटम |
वापसी का टिकट
ListItem
— जोड़ा गया सूची आइटम
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
appendListItem(text)
नया ListItem
बनाता और जोड़ता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
text | String | टेक्स्ट का कॉन्टेंट |
वापसी का टिकट
ListItem
— नया सूची आइटम
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
appendParagraph(paragraph)
दिए गए Paragraph
को जोड़ता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
paragraph | Paragraph | जोड़ने के लिए पैराग्राफ़ |
वापसी का टिकट
Paragraph
— जोड़ा गया पैराग्राफ़
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
appendParagraph(text)
नया Paragraph
बनाता और जोड़ता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
text | String | टेक्स्ट का कॉन्टेंट |
वापसी का टिकट
Paragraph
— नया पैराग्राफ़
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
appendTable()
appendTable(cells)
तय सेल से एक नया Table
जोड़ता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
cells | String[][] | नई टेबल में जोड़ने के लिए, टेबल की सेल का टेक्स्ट कॉन्टेंट |
वापसी का टिकट
Table
— जोड़ी गई टेबल
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
appendTable(table)
दिए गए Table
को जोड़ता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
table | Table | जोड़ने के लिए टेबल |
वापसी का टिकट
Table
— जोड़ी गई टेबल
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
clear()
copy()
मौजूदा एलिमेंट की अलग की गई, डीप कॉपी दिखाता है.
एलिमेंट में मौजूद सभी चाइल्ड एलिमेंट भी कॉपी कर लिए जाते हैं. नए एलिमेंट में यह मौजूद नहीं है पैरंट.
वापसी का टिकट
TableCell
— नई कॉपी.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
editAsText()
बदलाव करने के लिए, मौजूदा एलिमेंट का Text
वर्शन हासिल करता है.
एलिमेंट के कॉन्टेंट में रिच टेक्स्ट के तौर पर बदलाव करने के लिए, editAsText
का इस्तेमाल करें. editAsText
मोड बिना टेक्स्ट वाले एलिमेंट को अनदेखा कर देता है (जैसे कि InlineImage
और HorizontalRule
).
मिटाई गई टेक्स्ट रेंज में पूरी तरह से मौजूद चाइल्ड एलिमेंट, एलिमेंट से हटा दिए जाते हैं.
var body = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody(); // Insert two paragraphs separated by a paragraph containing an // horizontal rule. body.insertParagraph(0, "An editAsText sample."); body.insertHorizontalRule(0); body.insertParagraph(0, "An example."); // Delete " sample.\n\n An" removing the horizontal rule in the process. body.editAsText().deleteText(14, 25);
वापसी का टिकट
Text
— मौजूदा एलिमेंट का टेक्स्ट वर्शन
findElement(elementType)
बताए गए टाइप के डिसेंडेंट के लिए एलिमेंट की सामग्री खोजता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
elementType | ElementType | खोजने के लिए एलिमेंट का टाइप. |
वापसी का टिकट
RangeElement
— खोज के नतीजे में, खोज एलिमेंट की पोज़िशन के बारे में बताया जाता है.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
findElement(elementType, from)
चुने गए टाइप के डिसेंडेंट के लिए एलिमेंट की सामग्री खोजता है, जिसकी शुरुआत
RangeElement
बताया गया.
var body = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody(); // Define the search parameters. var searchType = DocumentApp.ElementType.PARAGRAPH; var searchHeading = DocumentApp.ParagraphHeading.HEADING1; var searchResult = null; // Search until the paragraph is found. while (searchResult = body.findElement(searchType, searchResult)) { var par = searchResult.getElement().asParagraph(); if (par.getHeading() == searchHeading) { // Found one, update and stop. par.setText('This is the first header.'); return; } }
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
elementType | ElementType | खोजने के लिए एलिमेंट का टाइप. |
from | RangeElement | वह खोज नतीजा जिससे खोजना है. |
वापसी का टिकट
RangeElement
— खोज का नतीजा, जो खोज एलिमेंट की अगली पोज़िशन दिखाता है.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
findText(searchPattern)
रेगुलर एक्सप्रेशन का इस्तेमाल करके, तय किए गए टेक्स्ट पैटर्न के एलिमेंट के कॉन्टेंट की खोज करता है.
JavaScript रेगुलर एक्सप्रेशन सुविधाओं का एक सबसेट पूरी तरह से काम नहीं करता, जैसे कि कैप्चर ग्रुप और मोड मॉडिफ़ायर.
दिया गया रेगुलर एक्सप्रेशन पैटर्न, हर टेक्स्ट ब्लॉक से अलग से मैच किया जाता है जो मौजूदा एलिमेंट में शामिल हों.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
searchPattern | String | खोजने के लिए पैटर्न |
वापसी का टिकट
RangeElement
— खोज के नतीजे से यह पता चलता है कि खोज के टेक्स्ट की जगह क्या है या अगर कोई टेक्स्ट मौजूद नहीं है, तो यह जानकारी शून्य होती है
मिलान
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
findText(searchPattern, from)
दिए गए टेक्स्ट पैटर्न के लिए, एलिमेंट के कॉन्टेंट की खोज करता है. इसकी शुरुआत, दिए गए टेक्स्ट से होती है खोज के नतीजे.
JavaScript रेगुलर एक्सप्रेशन सुविधाओं का एक सबसेट पूरी तरह से काम नहीं करता, जैसे कि कैप्चर ग्रुप और मोड मॉडिफ़ायर.
दिया गया रेगुलर एक्सप्रेशन पैटर्न, हर टेक्स्ट ब्लॉक से अलग से मैच किया जाता है जो मौजूदा एलिमेंट में शामिल हों.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
searchPattern | String | खोजने के लिए पैटर्न |
from | RangeElement | वह खोज नतीजा जिससे खोजना है |
वापसी का टिकट
RangeElement
— ऐसा खोज नतीजा, जो खोज के टेक्स्ट की अगली जगह दिखाता है या अगर कोई जगह नहीं है, तो यह शून्य होता है
मिलान
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getAttributes()
एलिमेंट के एट्रिब्यूट हासिल करता है.
नतीजा एक ऐसा ऑब्जेक्ट होता है जिसमें हर एक मान्य एलिमेंट एट्रिब्यूट के लिए एक प्रॉपर्टी होती है, जहां हर
प्रॉपर्टी का नाम, DocumentApp.Attribute
की गिनती में मौजूद किसी आइटम से मेल खाता है.
var doc = DocumentApp.getActiveDocument(); var documentTab = doc.getActiveTab().asDocumentTab(); var body = documentTab.getBody(); // Append a styled paragraph. var par = body.appendParagraph('A bold, italicized paragraph.'); par.setBold(true); par.setItalic(true); // Retrieve the paragraph's attributes. var atts = par.getAttributes(); // Log the paragraph attributes. for (var att in atts) { Logger.log(att + ":" + atts[att]); }
वापसी का टिकट
Object
— एलिमेंट के एट्रिब्यूट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getBackgroundColor()
पृष्ठभूमि रंग को वापस लाता है.
वापसी का टिकट
String
— बैकग्राउंड का रंग, सीएसएस नोटेशन में फ़ॉर्मैट किया जाता है (जैसे, '#ffffff'
)
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getChild(childIndex)
बताए गए चाइल्ड इंडेक्स में चाइल्ड एलीमेंट को हासिल करता है.
var body = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody(); // Obtain the first element in the tab. var firstChild = body.getChild(0); // If it's a paragraph, set its contents. if (firstChild.getType() == DocumentApp.ElementType.PARAGRAPH) { firstChild.asParagraph().setText("This is the first paragraph."); }
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
childIndex | Integer | फिर से पाने के लिए चाइल्ड एलिमेंट का इंडेक्स. |
वापसी का टिकट
Element
— बताए गए इंडेक्स में चाइल्ड एलिमेंट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getChildIndex(child)
बताए गए चाइल्ड एलिमेंट के लिए चाइल्ड इंडेक्स फिर से लाता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
child | Element | वह चाइल्ड एलिमेंट जिसके लिए इंडेक्स को फिर से हासिल करना है. |
वापसी का टिकट
Integer
— चाइल्ड इंडेक्स.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getColSpan()
कॉलम स्पैन की जानकारी दिखाता है, जो इस सेल में मौजूद टेबल सेल के कॉलम की संख्या है. मर्ज नहीं किए गए सेल का कोल स्पैन 1 होता है.
वापसी का टिकट
Integer
— किसी सेल के लिए कॉलम की अवधि या 0 जिसे किसी दूसरे सेल के साथ मर्ज कर दिया गया है
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getLinkUrl()
लिंक के यूआरएल को वापस लाता है.
वापसी का टिकट
String
— अगर एलिमेंट में इस एट्रिब्यूट के लिए एक से ज़्यादा वैल्यू हैं, तो लिंक का यूआरएल या शून्य
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getNextSibling()
यह एलिमेंट का अगला सिबलिंग एलिमेंट हासिल करता है.
अगले सिबलिंग का वही पैरंट है और वे मौजूदा एलिमेंट को फ़ॉलो करते हैं.
वापसी का टिकट
Element
— अगला सिबलिंग एलिमेंट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getNumChildren()
बच्चों की संख्या की जानकारी देता है.
var body = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody(); // Log the number of elements in the tab. Logger.log("There are " + body.getNumChildren() + " elements in the tab's body.");
वापसी का टिकट
Integer
— बच्चों की संख्या.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getPaddingBottom()
पॉइंट के हिसाब से सबसे नीचे की पैडिंग (जगह) वापस हासिल करता है.
वापसी का टिकट
Number
— सबसे नीचे की पैडिंग (जगह), पॉइंट में
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getPaddingLeft()
बिंदुओं में बाईं पैडिंग को वापस लाता है.
वापसी का टिकट
Number
— पॉइंट में बाईं ओर की पैडिंग
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getPaddingRight()
पॉइंट में सही पैडिंग (जगह) हासिल करता है.
वापसी का टिकट
Number
— पॉइंट में दाईं ओर की पैडिंग
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getPaddingTop()
पॉइंट के हिसाब से सबसे ऊपर की पैडिंग (जगह) वापस हासिल करता है.
वापसी का टिकट
Number
— पॉइंट में सबसे ऊपर की पैडिंग
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getParent()
एलिमेंट के पैरंट एलिमेंट को हासिल करता है.
पैरंट एलिमेंट में मौजूदा एलिमेंट शामिल है.
वापसी का टिकट
ContainerElement
— पैरंट एलिमेंट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getParentRow()
मौजूदा TableCell
वाली TableRow
की जानकारी हासिल करता है.
वापसी का टिकट
TableRow
— टेबल की वह पंक्ति जिसमें मौजूदा सेल है
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getParentTable()
मौजूदा TableCell
वाली Table
की जानकारी हासिल करता है.
वापसी का टिकट
Table
— मौजूदा सेल वाली टेबल
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getPreviousSibling()
यह एलिमेंट के पिछले सिबलिंग एलिमेंट को हासिल करता है.
पिछले सिबलिंग का पैरंट ही है और मौजूदा एलिमेंट से पहले आता है.
वापसी का टिकट
Element
— पिछला सिबलिंग एलिमेंट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getRowSpan()
पंक्ति स्पैन की जानकारी देता है, जो इस सेल में फैली टेबल सेल की पंक्तियों की संख्या है. मर्ज नहीं किए गए सेल में पंक्ति का स्पैन 1 है.
वापसी का टिकट
Integer
— किसी सेल की पंक्ति का दायरा या 0 जिसे किसी दूसरे सेल के ज़रिए मर्ज कर दिया गया है
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getText()
एलिमेंट के कॉन्टेंट को टेक्स्ट स्ट्रिंग के तौर पर वापस लाता है.
वापसी का टिकट
String
— टेक्स्ट स्ट्रिंग के रूप में एलिमेंट का कॉन्टेंट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getTextAlignment()
इससे टेक्स्ट अलाइनमेंट की सुविधा मिलती है. अलाइनमेंट के उपलब्ध टाइप DocumentApp.TextAlignment.NORMAL
, DocumentApp.TextAlignment.SUBSCRIPT
, और DocumentApp.TextAlignment.SUPERSCRIPT
हैं.
वापसी का टिकट
TextAlignment
— टेक्स्ट अलाइनमेंट का टाइप या अगर टेक्स्ट में एक से ज़्यादा तरह के टेक्स्ट शामिल हैं, तो null
अलाइनमेंट या अगर टेक्स्ट अलाइनमेंट कभी सेट नहीं किया गया है
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getType()
एलिमेंट के ElementType
को हासिल करता है.
दिए गए एलिमेंट का सटीक टाइप तय करने के लिए, getType()
का इस्तेमाल करें.
var doc = DocumentApp.getActiveDocument(); var documentTab = doc.getActiveTab().asDocumentTab(); var body = documentTab.getBody(); // Obtain the first element in the active tab's body. var firstChild = body.getChild(0); // Use getType() to determine the element's type. if (firstChild.getType() == DocumentApp.ElementType.PARAGRAPH) { Logger.log('The first element is a paragraph.'); } else { Logger.log('The first element is not a paragraph.'); }
वापसी का टिकट
ElementType
— एलिमेंट का टाइप.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getVerticalAlignment()
VerticalAlignment
को वापस लाता है.
वापसी का टिकट
VerticalAlignment
— वर्टिकल अलाइनमेंट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
getWidth()
सेल वाले कॉलम की चौड़ाई को, पॉइंट में हासिल करता है.
वापसी का टिकट
Number
— कॉलम की चौड़ाई, पॉइंट में
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
insertHorizontalRule(childIndex)
तय किए गए इंडेक्स में नया HorizontalRule
बनाता है और उसे शामिल करता है.
हॉरिज़ॉन्टल नियम को नए Paragraph
में शामिल किया जाएगा.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
childIndex | Integer | वह इंडेक्स जिस पर एलिमेंट शामिल करना है |
वापसी का टिकट
HorizontalRule
— नया हॉरिज़ॉन्टल नियम
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
insertImage(childIndex, image)
तय की गई इमेज पर, दिए गए इमेज ब्लॉब से InlineImage
बनाता है और जोड़ता है
इंडेक्स करें.
इमेज को नए Paragraph
में शामिल किया जाएगा.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
childIndex | Integer | वह इंडेक्स जिस पर एलिमेंट शामिल करना है |
image | BlobSource | इमेज का डेटा |
वापसी का टिकट
InlineImage
— इनलाइन इमेज शामिल की गई
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
insertImage(childIndex, image)
दिए गए InlineImage
को तय इंडेक्स में शामिल करता है.
इमेज को नए Paragraph
में शामिल किया जाएगा.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
childIndex | Integer | वह इंडेक्स जिस पर एलिमेंट शामिल करना है |
image | InlineImage | शामिल करने के लिए इमेज |
वापसी का टिकट
InlineImage
— इनलाइन इमेज शामिल की गई
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
insertListItem(childIndex, listItem)
दिए गए ListItem
को तय इंडेक्स में शामिल करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
childIndex | Integer | वह इंडेक्स जिस पर एलिमेंट शामिल करना है |
listItem | ListItem | सम्मिलित करने के लिए सूची आइटम |
वापसी का टिकट
ListItem
— नया सूची आइटम डाला गया
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
insertListItem(childIndex, text)
तय किए गए इंडेक्स में नया ListItem
बनाता है और उसे शामिल करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
childIndex | Integer | वह इंडेक्स जिस पर एलिमेंट शामिल करना है |
text | String | टेक्स्ट का कॉन्टेंट |
वापसी का टिकट
ListItem
— नया सूची आइटम
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
insertParagraph(childIndex, paragraph)
दिए गए Paragraph
को तय इंडेक्स में शामिल करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
childIndex | Integer | वह इंडेक्स जिस पर एलिमेंट शामिल करना है |
paragraph | Paragraph | सम्मिलित करने के लिए पैराग्राफ़ |
वापसी का टिकट
Paragraph
— शामिल किया गया पैराग्राफ़
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
insertParagraph(childIndex, text)
तय किए गए इंडेक्स में नया Paragraph
बनाता है और उसे शामिल करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
childIndex | Integer | वह इंडेक्स जिस पर एलिमेंट शामिल करना है |
text | String | टेक्स्ट का कॉन्टेंट |
वापसी का टिकट
Paragraph
— नया पैराग्राफ़
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
insertTable(childIndex)
तय किए गए इंडेक्स में नया Table
बनाता है और उसे शामिल करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
childIndex | Integer | वह इंडेक्स जिस पर एलिमेंट शामिल करना है |
वापसी का टिकट
Table
— नई टेबल
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
insertTable(childIndex, cells)
तय किए गए इंडेक्स में, तय किए गए सेल वाला नया Table
बनाता है और उसे शामिल करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
childIndex | Integer | वह इंडेक्स जिस पर इंसर्ट करना है |
cells | String[][] | नई टेबल में जोड़ने के लिए, टेबल की सेल का टेक्स्ट कॉन्टेंट |
वापसी का टिकट
Table
— नई टेबल
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
insertTable(childIndex, table)
दिए गए Table
को तय इंडेक्स में शामिल करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
childIndex | Integer | वह इंडेक्स जिस पर एलिमेंट शामिल करना है |
table | Table | शामिल करने के लिए टेबल |
वापसी का टिकट
Table
— शामिल की गई टेबल
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
isAtDocumentEnd()
यह तय करता है कि एलिमेंट, Document
के आखिर में है या नहीं.
वापसी का टिकट
Boolean
— टैब के आखिर में एलिमेंट है या नहीं.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
merge()
यह एलिमेंट को एक ही टाइप के पिछले सिबलिंग के साथ मर्ज करता है.
सिर्फ़ एक ही ElementType
के एलिमेंट मर्ज किए जा सकते हैं. इसमें मौजूद कोई भी चाइल्ड एलिमेंट
मौजूदा एलिमेंट को पिछले सिबलिंग एलिमेंट में ले जाया जाता है.
मौजूदा एलिमेंट को दस्तावेज़ से हटा दिया जाता है.
var doc = DocumentApp.getActiveDocument(); var documentTab = doc.getActiveTab().asDocumentTab(); var body = documentTab.getBody(); // Example 1: Merge paragraphs // Append two paragraphs to the document's active tab. var par1 = body.appendParagraph('Paragraph 1.'); var par2 = body.appendParagraph('Paragraph 2.'); // Merge the newly added paragraphs into a single paragraph. par2.merge(); // Example 2: Merge table cells // Create a two-dimensional array containing the table's cell contents. var cells = [ ['Row 1, Cell 1', 'Row 1, Cell 2'], ['Row 2, Cell 1', 'Row 2, Cell 2'] ]; // Build a table from the array. var table = body.appendTable(cells); // Get the first row in the table. var row = table.getRow(0); // Get the two cells in this row. var cell1 = row.getCell(0); var cell2 = row.getCell(1); // Merge the current cell into its preceding sibling element. var merged = cell2.merge();
वापसी का टिकट
TableCell
— मर्ज किया गया एलिमेंट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
removeChild(child)
बताए गए चाइल्ड एलिमेंट को हटाता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
child | Element | हटाया जाने वाला चाइल्ड एलिमेंट |
वापसी का टिकट
TableCell
— मौजूदा एलिमेंट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
removeFromParent()
एलिमेंट को इसकी पैरंट जगह से हटाता है.
var doc = DocumentApp.getActiveDocument(); var documentTab = doc.getActiveTab().asDocumentTab() var body = documentTab.getBody(); // Remove all images in the active tab's body. var imgs = body.getImages(); for (var i = 0; i < imgs.length; i++) { imgs[i].removeFromParent(); }
वापसी का टिकट
TableCell
— हटाया गया एलिमेंट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
replaceText(searchPattern, replacement)
सामान्य का उपयोग करके, दिए गए बदले हुए स्ट्रिंग से दिए गए लेख पैटर्न की सभी आवृत्तियां बदलता है एक्सप्रेशन के बारे में भी बताया गया है.
खोज पैटर्न को स्ट्रिंग के तौर पर पास किया जाता है, न कि JavaScript रेगुलर एक्सप्रेशन ऑब्जेक्ट के तौर पर. इसलिए, आपको पैटर्न में बैकस्लैश को एस्केप करना होगा.
इस तरीके में, Google के RE2 रेगुलर एक्सप्रेशन का इस्तेमाल किया जाता है एक्सप्रेशन लाइब्रेरी, जो इस्तेमाल किए जा सकने वाले सिंटैक्स को सीमित करती है.
दिया गया रेगुलर एक्सप्रेशन पैटर्न, हर टेक्स्ट ब्लॉक से अलग से मैच किया जाता है जो मौजूदा एलिमेंट में शामिल हों.
var body = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody(); // Clear the text surrounding "Apps Script", with or without text. body.replaceText("^.*Apps ?Script.*$", "Apps Script");
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
searchPattern | String | खोजने के लिए रेगुलर एक्सप्रेशन पैटर्न |
replacement | String | बदले जाने के लिए इस्तेमाल किया जाने वाला टेक्स्ट |
वापसी का टिकट
Element
— मौजूदा एलिमेंट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setAttributes(attributes)
एलिमेंट के एट्रिब्यूट सेट करता है.
बताया गया विशेषता पैरामीटर एक ऐसा ऑब्जेक्ट होना चाहिए, जिसमें हर प्रॉपर्टी का नाम एक आइटम हो
DocumentApp.Attribute
की गिनती और हर प्रॉपर्टी की वैल्यू, नई वैल्यू होगी
लागू किया गया.
var doc = DocumentApp.getActiveDocument(); var documentTab = doc.getActiveTab().asDocumentTab(); var body = documentTab.getBody(); // Define a custom paragraph style. var style = {}; style[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] = DocumentApp.HorizontalAlignment.RIGHT; style[DocumentApp.Attribute.FONT_FAMILY] = 'Calibri'; style[DocumentApp.Attribute.FONT_SIZE] = 18; style[DocumentApp.Attribute.BOLD] = true; // Append a plain paragraph. var par = body.appendParagraph('A paragraph with custom style.'); // Apply the custom style. par.setAttributes(style);
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
attributes | Object | एलिमेंट के एट्रिब्यूट. |
वापसी का टिकट
TableCell
— मौजूदा एलिमेंट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setBackgroundColor(color)
बैकग्राउंड का रंग सेट करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
color | String | बैकग्राउंड का रंग, जिसे सीएसएस नोटेशन में फ़ॉर्मैट किया गया है (जैसे कि '#ffffff' ) |
वापसी का टिकट
TableCell
— मौजूदा एलिमेंट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setLinkUrl(url)
लिंक का यूआरएल सेट करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
url | String | लिंक का यूआरएल |
वापसी का टिकट
TableCell
— मौजूदा एलिमेंट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setPaddingBottom(paddingBottom)
सबसे नीचे की पैडिंग (जगह) को पॉइंट में सेट करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
paddingBottom | Number | नीचे की पैडिंग, पॉइंट में |
वापसी का टिकट
TableCell
— मौजूदा एलिमेंट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setPaddingLeft(paddingLeft)
बाईं ओर की पैडिंग (जगह) को पॉइंट में सेट करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
paddingLeft | Number | पॉइंट में बाईं ओर की पैडिंग |
वापसी का टिकट
TableCell
— मौजूदा एलिमेंट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setPaddingRight(paddingRight)
सही पैडिंग (जगह) को पॉइंट में सेट करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
paddingRight | Number | पॉइंट में दाईं ओर की पैडिंग. |
वापसी का टिकट
TableCell
— मौजूदा एलिमेंट.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setPaddingTop(paddingTop)
सबसे ऊपर की पैडिंग (जगह) को पॉइंट में सेट करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
paddingTop | Number | पॉइंट के अंदर, सबसे ऊपर की पैडिंग |
वापसी का टिकट
TableCell
— मौजूदा एलिमेंट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setText(text)
कॉन्टेंट को सामान्य टेक्स्ट के तौर पर सेट करता है.
ध्यान दें: मौजूदा कॉन्टेंट हटा दिया गया है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
text | String | नया टेक्स्ट कॉन्टेंट |
वापसी का टिकट
TableCell
— मौजूदा एलिमेंट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setTextAlignment(textAlignment)
टेक्स्ट अलाइनमेंट सेट करता है. अलाइनमेंट के उपलब्ध टाइप DocumentApp.TextAlignment.NORMAL
, DocumentApp.TextAlignment.SUBSCRIPT
, और DocumentApp.TextAlignment.SUPERSCRIPT
हैं.
// Make the entire first paragraph in the active tab be superscript. var documentTab = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab(); var text = documentTab.getBody().getParagraphs()[0].editAsText(); text.setTextAlignment(DocumentApp.TextAlignment.SUPERSCRIPT);
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
textAlignment | TextAlignment | लागू किए जाने वाले लेख संरेखण का प्रकार |
वापसी का टिकट
TableCell
— मौजूदा एलिमेंट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setVerticalAlignment(alignment)
वर्टिकल अलाइनमेंट सेट करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
alignment | VerticalAlignment | वर्टिकल अलाइनमेंट |
वापसी का टिकट
TableCell
— मौजूदा एलिमेंट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
setWidth(width)
मौजूदा सेल वाले कॉलम की चौड़ाई को, पॉइंट में सेट करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
width | Number | कॉलम की चौड़ाई, पॉइंट में |
वापसी का टिकट
TableCell
— मौजूदा एलिमेंट
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट के लिए, यहां दिए गए एक या एक से ज़्यादा स्कोप की अनुमति होनी चाहिए:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents