Enum Alignment
अलाइनमेंट
इस ईनम से पता चलता है कि इमेज अलाइनमेंट के किन तरीकों का इस्तेमाल किया जा सकता है. अलाइनमेंट के टाइप यहां से ऐक्सेस किए जा सकते हैं
FormApp.Alignment
.
किसी enum को कॉल करने के लिए, आपको उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल करना होगा. उदाहरण के लिए,
FormApp.Alignment.LEFT
.
// Open a form by ID and add a new image item with alignment
var form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz');
var img = UrlFetchApp.fetch('https://www.google.com/images/srpr/logo4w.png');
form.addImageItem()
.setImage(img)
.setAlignment(FormApp.Alignment.CENTER);
प्रॉपर्टी
प्रॉपर्टी | टाइप | ब्यौरा |
LEFT | Enum | इमेज को फ़ॉर्म की बाईं ओर अलाइन करें. |
CENTER | Enum | इमेज को फ़ॉर्म के बीच में अलाइन करें. |
RIGHT | Enum | फ़ॉर्म की दाईं ओर इमेज को अलाइन करें. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2024-09-13 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2024-09-13 (UTC) को अपडेट किया गया."],[[["`FormApp.Alignment` is an enum used to define the alignment of images within a Google Form."],["Image alignment options include `LEFT`, `CENTER`, and `RIGHT`, which can be accessed using `FormApp.Alignment.LEFT`, `FormApp.Alignment.CENTER`, and `FormApp.Alignment.RIGHT` respectively."],["You can set the alignment of an image item in your form using the `setAlignment()` method and passing in the desired `FormApp.Alignment` property."]]],[]]