Class Drawing

ड्रॉइंग

स्प्रेडशीट में शीट पर बनाई गई ड्रॉइंग दिखाता है.

तरीके

तरीकारिटर्न टाइपसंक्षिप्त विवरण
getContainerInfo()ContainerInfoइससे यह जानकारी मिलती है कि शीट में ड्रॉइंग कहां है.
getHeight()Integerइस ड्रॉइंग की असल ऊंचाई, पिक्सल में दिखाता है.
getOnAction()Stringइस ड्रॉइंग में अटैच किए गए मैक्रो का नाम दिखाता है.
getSheet()Sheetवह शीट दिखाता है जिस पर यह ड्रॉइंग दिखती है.
getWidth()Integerइस ड्रॉइंग की असल चौड़ाई, पिक्सल में दिखाता है.
getZIndex()Numberइस ड्रॉइंग का z-index दिखाता है.
remove()voidस्प्रेडशीट से इस ड्रॉइंग को मिटाता है.
setHeight(height)Drawingइस ड्रॉइंग की असल ऊंचाई को पिक्सल में सेट करता है.
setOnAction(macroName)Drawingइस ड्रॉइंग में मैक्रो फ़ंक्शन असाइन करता है.
setPosition(anchorRowPos, anchorColPos, offsetX, offsetY)Drawingयह सेट करता है कि शीट पर ड्रॉइंग कहां दिखेगी.
setWidth(width)Drawingइस ड्रॉइंग की असल चौड़ाई को पिक्सल में सेट करता है.
setZIndex(zIndex)Drawingइस ड्रॉइंग का z-index सेट करता है.

ज़्यादा जानकारी वाला दस्तावेज़

getContainerInfo()

इससे यह जानकारी मिलती है कि शीट में ड्रॉइंग कहां है.

वापसी का टिकट

ContainerInfo — एक ऑब्जेक्ट, जिसमें ड्रॉइंग के कंटेनर की पोज़िशन होती है.

अनुमति देना

इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:

  • https://www.googleapis.com/auth/spreadsheets.currentonly
  • https://www.googleapis.com/auth/spreadsheets

getHeight()

इस ड्रॉइंग की असल ऊंचाई, पिक्सल में दिखाता है.

// Logs the height of all drawings in a sheet
const drawings = SpreadsheetApp.getActiveSheet().getDrawings();
for (let i = 0; i < drawings.length; i++) {
  Logger.log(drawings[i].getHeight());
}

वापसी का टिकट

Integer — पिक्सल में ड्रॉइंग की ऊंचाई.

अनुमति देना

इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:

  • https://www.googleapis.com/auth/spreadsheets.currentonly
  • https://www.googleapis.com/auth/spreadsheets

getOnAction()

इस ड्रॉइंग में अटैच किए गए मैक्रो का नाम दिखाता है.

// Logs the macro name of all drawings on the active sheet.
const drawings = SpreadsheetApp.getActiveSheet().getDrawings();
for (let i = 0; i < drawings.length; i++) {
  Logger.log(drawings[i].getOnAction());
}

वापसी का टिकट

String — इस ड्रॉइंग से जुड़े मैक्रो का नाम.

अनुमति देना

इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:

  • https://www.googleapis.com/auth/spreadsheets.currentonly
  • https://www.googleapis.com/auth/spreadsheets

getSheet()

वह शीट दिखाता है जिस पर यह ड्रॉइंग दिखती है.

// Logs the parent sheet of all drawings on the active sheet.
const drawings = SpreadsheetApp.getActiveSheet().getDrawings();
for (let i = 0; i < drawings.length; i++) {
  Logger.log(drawings[i].getSheet());
}

वापसी का टिकट

Sheet — वह शीट जिस पर ड्रॉइंग दिखती है.

अनुमति देना

इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:

  • https://www.googleapis.com/auth/spreadsheets.currentonly
  • https://www.googleapis.com/auth/spreadsheets

getWidth()

इस ड्रॉइंग की असल चौड़ाई, पिक्सल में दिखाता है.

// Logs the width of all drawings in a sheet
const drawings = SpreadsheetApp.getActiveSheet().getDrawings();
for (let i = 0; i < drawings.length; i++) {
  Logger.log(drawings[i].getWidth());
}

वापसी का टिकट

Integer — पिक्सल में ड्रॉइंग की चौड़ाई.

अनुमति देना

इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:

  • https://www.googleapis.com/auth/spreadsheets.currentonly
  • https://www.googleapis.com/auth/spreadsheets

getZIndex()

इस ड्रॉइंग का z-index दिखाता है.

// Logs the z-index of all drawings on the active sheet.
const drawings = SpreadsheetApp.getActiveSheet().getDrawings();
for (let i = 0; i < drawings.length; i++) {
  Logger.log(drawings[i].getZIndex());
}

वापसी का टिकट

Number — इस ड्रॉइंग का Z-Index.

अनुमति देना

इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:

  • https://www.googleapis.com/auth/spreadsheets.currentonly
  • https://www.googleapis.com/auth/spreadsheets

remove()

स्प्रेडशीट से इस ड्रॉइंग को मिटाता है. ड्रॉइंग पर कोई और कार्रवाई करने पर, स्क्रिप्ट में गड़बड़ी दिखती है.

// Deletes all drawings from the active sheet.
const drawings = SpreadsheetApp.getActiveSheet().getDrawings();
for (let i = 0; i < drawings.length; i++) {
  drawings[i].remove();
}

अनुमति देना

इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:

  • https://www.googleapis.com/auth/spreadsheets.currentonly
  • https://www.googleapis.com/auth/spreadsheets

setHeight(height)

इस ड्रॉइंग की असल ऊंचाई को पिक्सल में सेट करता है.

पैरामीटर

नामटाइपब्यौरा
heightIntegerपिक्सल में इमेज की ऊंचाई.

वापसी का टिकट

Drawing — चेन बनाने के लिए यह ड्रॉइंग.

अनुमति देना

इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:

  • https://www.googleapis.com/auth/spreadsheets.currentonly
  • https://www.googleapis.com/auth/spreadsheets

setOnAction(macroName)

इस ड्रॉइंग में मैक्रो फ़ंक्शन असाइन करता है.

पैरामीटर

नामटाइपब्यौरा
macroNameStringमैक्रो फ़ंक्शन का नाम.

वापसी का टिकट

Drawing — चेन बनाने के लिए यह ड्रॉइंग.


setPosition(anchorRowPos, anchorColPos, offsetX, offsetY)

यह सेट करता है कि शीट पर ड्रॉइंग कहां दिखेगी. ऐंकर पंक्ति और कॉलम की पोज़िशन के इंडेक्स, 1 से शुरू होते हैं.

पैरामीटर

नामटाइपब्यौरा
anchorRowPosIntegerड्रॉइंग का ऊपरी हिस्सा इस पंक्ति में ऐंकर किया गया है.
anchorColPosIntegerड्रॉइंग का ऊपरी हिस्सा इस कॉलम में ऐंकर किया गया है.
offsetXIntegerपिक्सल में, सेल के कोने से हॉरिज़ॉन्टल ऑफ़सेट.
offsetYIntegerसेल के कोने से वर्टिकल ऑफ़सेट, पिक्सल में.

वापसी का टिकट

Drawing — चेन बनाने के लिए यह ड्रॉइंग.

अनुमति देना

इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:

  • https://www.googleapis.com/auth/spreadsheets.currentonly
  • https://www.googleapis.com/auth/spreadsheets

setWidth(width)

इस ड्रॉइंग की असल चौड़ाई को पिक्सल में सेट करता है.

पैरामीटर

नामटाइपब्यौरा
widthIntegerपिक्सल में इमेज की चौड़ाई.

वापसी का टिकट

Drawing — चेन बनाने के लिए यह ड्रॉइंग.

अनुमति देना

इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:

  • https://www.googleapis.com/auth/spreadsheets.currentonly
  • https://www.googleapis.com/auth/spreadsheets

setZIndex(zIndex)

इस ड्रॉइंग का z-index सेट करता है.

पैरामीटर

नामटाइपब्यौरा
zIndexNumberइस ड्रॉइंग का Z-Index.

वापसी का टिकट

Drawing — चेन बनाने के लिए यह ड्रॉइंग.