ऐसा फ़ॉर्म जिसमें सभी प्रॉपर्टी और आइटम शामिल होते हैं. प्रॉपर्टी में टाइटल, सेटिंग, और जवाबों को सेव करने की जगह की जानकारी शामिल होती है. आइटम में, सवाल वाले आइटम शामिल होते हैं. जैसे, चेकबॉक्स या रेडियो आइटम. वहीं, लेआउट आइटम में पेज ब्रेक जैसी चीज़ें शामिल होती हैं. FormApp
से फ़ॉर्म ऐक्सेस किए जा सकते हैं या बनाए जा सकते हैं.
// Open a form by ID and create a new spreadsheet. const form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz'); const ss = SpreadsheetApp.create('Spreadsheet Name'); // Update form properties via chaining. form.setTitle('Form Name') .setDescription('Description of form') .setConfirmationMessage('Thanks for responding!') .setAllowResponseEdits(true) .setAcceptingResponses(false); // Update the form's response destination. form.setDestination(FormApp.DestinationType.SPREADSHEET, ss.getId());
तरीके
तरीका | रिटर्न टाइप | संक्षिप्त विवरण |
---|---|---|
addCheckboxGridItem() | CheckboxGridItem | कॉलम और पंक्तियों के ग्रिड के तौर पर दिखाया जाने वाला नया सवाल आइटम जोड़ता है. इससे, जवाब देने वाले व्यक्ति को हर पंक्ति में चेकबॉक्स के क्रम से कई विकल्प चुनने की सुविधा मिलती है. |
addCheckboxItem() | CheckboxItem | एक नया सवाल जोड़ता है. इससे जवाब देने वाले व्यक्ति को एक या उससे ज़्यादा चेकबॉक्स चुनने की सुविधा मिलती है. साथ ही, जवाब देने के लिए "अन्य" फ़ील्ड भी उपलब्ध होता है. हालांकि, जवाब देने के लिए इस फ़ील्ड का इस्तेमाल करना ज़रूरी नहीं है. |
addDateItem() | DateItem | एक नया सवाल जोड़ता है, ताकि जवाब देने वाला व्यक्ति तारीख बता सके. |
addDateTimeItem() | DateTimeItem | एक नया सवाल जोड़ता है, ताकि जवाब देने वाला व्यक्ति तारीख और समय बता सके. |
addDurationItem() | DurationItem | एक नया सवाल जोड़ता है, ताकि जवाब देने वाला व्यक्ति समय की जानकारी दे सके. |
addEditor(emailAddress) | Form | इस निर्देश से, दिए गए उपयोगकर्ता को Form के लिए, संपादकों की सूची में जोड़ दिया जाता है. |
addEditor(user) | Form | इस निर्देश से, दिए गए उपयोगकर्ता को Form के लिए, संपादकों की सूची में जोड़ दिया जाता है. |
addEditors(emailAddresses) | Form | Form के लिए, संपादकों की सूची में उपयोगकर्ताओं के दिए गए कलेक्शन को जोड़ता है. |
addGridItem() | GridItem | कॉलम और पंक्तियों के ग्रिड के तौर पर दिखाया जाने वाला नया सवाल जोड़ता है. इससे, जवाब देने वाले व्यक्ति को रेडियो बटन के क्रम से हर पंक्ति में एक विकल्प चुनने की सुविधा मिलती है. |
addImageItem() | ImageItem | इमेज दिखाने वाला नया लेआउट आइटम जोड़ता है. |
addListItem() | ListItem | एक नया सवाल जोड़ता है, जिससे जवाब देने वाले व्यक्ति को ड्रॉपडाउन सूची से एक विकल्प चुनने की सुविधा मिलती है. |
addMultipleChoiceItem() | MultipleChoiceItem | एक नया सवाल जोड़ता है. इससे जवाब देने वाले व्यक्ति को रेडियो बटन की सूची से कोई विकल्प चुनने या वैकल्पिक "अन्य" फ़ील्ड को चुनने का विकल्प मिलता है. |
addPageBreakItem() | PageBreakItem | एक नया लेआउट आइटम जोड़ता है, जो किसी पेज की शुरुआत को मार्क करता है. |
addParagraphTextItem() | ParagraphTextItem | एक नया सवाल जोड़ता है, जिससे जवाब देने वाले व्यक्ति को टेक्स्ट का एक ब्लॉक डालने की सुविधा मिलती है. |
addScaleItem() | ScaleItem | एक नया सवाल जोड़ता है. इससे जवाब देने वाले व्यक्ति को, रेडियो बटन के नंबर वाले क्रम से एक विकल्प चुनने की सुविधा मिलती है. |
addSectionHeaderItem() | SectionHeaderItem | एक नया लेआउट आइटम जोड़ता है, जो किसी सेक्शन की शुरुआत को विज़ुअल तौर पर दिखाता है. |
addTextItem() | TextItem | एक नया सवाल जोड़ता है, ताकि जवाब देने वाला व्यक्ति एक लाइन का टेक्स्ट डाल सके. |
addTimeItem() | TimeItem | एक नया सवाल जोड़ता है, ताकि जवाब देने वाला व्यक्ति दिन का समय बता सके. |
addVideoItem() | VideoItem | वीडियो दिखाने वाला नया लेआउट आइटम जोड़ता है. |
canEditResponse() | Boolean | इससे यह तय होता है कि फ़ॉर्म में, जवाब सबमिट करने के बाद उसमें बदलाव करने के लिए लिंक दिखेगा या नहीं. |
collectsEmail() | Boolean | इससे यह तय होता है कि फ़ॉर्म में जवाब देने वालों के ईमेल पते इकट्ठा किए जाते हैं या नहीं. |
createResponse() | FormResponse | फ़ॉर्म में नया जवाब जोड़ता है. |
deleteAllResponses() | Form | फ़ॉर्म के जवाबों के स्टोर से, सबमिट किए गए सभी जवाब मिटा देता है. |
deleteItem(index) | void | फ़ॉर्म में मौजूद सभी आइटम में से, किसी दिए गए इंडेक्स पर मौजूद आइटम को मिटाता है. |
deleteItem(item) | void | दिए गए आइटम को मिटाता है. |
deleteResponse(responseId) | Form | फ़ॉर्म के जवाबों के स्टोर से एक जवाब मिटाता है. |
getConfirmationMessage() | String | फ़ॉर्म की पुष्टि करने वाला मैसेज पाता है. |
getCustomClosedFormMessage() | String | यह फ़ंक्शन, कस्टम मैसेज दिखाता है. यह मैसेज तब दिखता है, जब फ़ॉर्म में जवाब स्वीकार नहीं किए जा रहे हों. अगर कोई कस्टम मैसेज सेट नहीं किया गया है, तो यह खाली स्ट्रिंग दिखाता है. |
getDescription() | String | फ़ॉर्म की जानकारी दिखाता है. |
getDestinationId() | String | फ़ॉर्म के रिस्पॉन्स डेस्टिनेशन का आईडी पाता है. |
getDestinationType() | DestinationType | फ़ॉर्म के रिस्पॉन्स डेस्टिनेशन का टाइप दिखाता है. |
getEditUrl() | String | फ़ॉर्म के बदलाव मोड को ऐक्सेस करने के लिए इस्तेमाल किया जा सकने वाला यूआरएल मिलता है. |
getEditors() | User[] | इस Form के लिए, एडिटर की सूची दिखाता है. |
getId() | String | फ़ॉर्म का आईडी पाता है. |
getItemById(id) | Item | दिए गए आईडी वाला आइटम दिखाता है. |
getItems() | Item[] | फ़ॉर्म में मौजूद सभी आइटम का कलेक्शन दिखाता है. |
getItems(itemType) | Item[] | यह किसी दिए गए टाइप के सभी आइटम का ऐरे दिखाता है. |
getPublishedUrl() | String | वह यूआरएल पाता है जिसका इस्तेमाल फ़ॉर्म का जवाब देने के लिए किया जा सकता है. |
getResponse(responseId) | FormResponse | रिस्पॉन्स आईडी के आधार पर, फ़ॉर्म का एक रिस्पॉन्स मिलता है. |
getResponses() | FormResponse[] | फ़ॉर्म के सभी जवाबों का कलेक्शन मिलता है. |
getResponses(timestamp) | FormResponse[] | किसी तारीख और समय के बाद, फ़ॉर्म के सभी जवाबों का कलेक्शन दिखाता है. |
getShuffleQuestions() | Boolean | इससे यह तय होता है कि फ़ॉर्म के हर पेज पर सवालों का क्रम रैंडम है या नहीं. |
getSummaryUrl() | String | वह यूआरएल पाता है जिसका इस्तेमाल, फ़ॉर्म के जवाबों की खास जानकारी देखने के लिए किया जा सकता है. |
getTitle() | String | फ़ॉर्म का टाइटल दिखाता है. |
hasLimitOneResponsePerUser() | Boolean | यह तय करता है कि फ़ॉर्म में हर व्यक्ति सिर्फ़ एक जवाब दे सकता है या नहीं. |
hasProgressBar() | Boolean | इससे तय होता है कि फ़ॉर्म में प्रोग्रेस बार दिखेगा या नहीं. |
hasRespondAgainLink() | Boolean | इससे यह तय होता है कि फ़ॉर्म भरने के बाद, जवाब देने वाले व्यक्ति को एक और जवाब सबमिट करने के लिए लिंक दिखेगा या नहीं. |
isAcceptingResponses() | Boolean | यह तय करता है कि फ़ॉर्म पर फ़िलहाल जवाब स्वीकार किए जा रहे हैं या नहीं. |
isPublishingSummary() | Boolean | इससे यह तय होता है कि जवाब देने वाला व्यक्ति फ़ॉर्म भरने के बाद, जवाबों की खास जानकारी देखने के लिए लिंक देख पाएगा या नहीं. |
isQuiz() | Boolean | यह तय करता है कि फ़ॉर्म क्विज़ है या नहीं. |
moveItem(from, to) | Item | फ़ॉर्म में मौजूद सभी आइटम में से किसी आइटम को दिए गए इंडेक्स से किसी दूसरे इंडेक्स पर ले जाता है. |
moveItem(item, toIndex) | Item | फ़ॉर्म में मौजूद सभी आइटम में से किसी आइटम को दिए गए इंडेक्स पर ले जाता है. |
removeDestination() | Form | फ़ॉर्म को उसके मौजूदा रिस्पॉन्स डेस्टिनेशन से अनलिंक करता है. |
removeEditor(emailAddress) | Form | Form के एडिटर की सूची से, दिए गए उपयोगकर्ता को हटाता है. |
removeEditor(user) | Form | Form के एडिटर की सूची से, दिए गए उपयोगकर्ता को हटाता है. |
setAcceptingResponses(enabled) | Form | यह सेट करता है कि फ़ॉर्म पर फ़िलहाल जवाब स्वीकार किए जा रहे हैं या नहीं. |
setAllowResponseEdits(enabled) | Form | इससे यह तय होता है कि फ़ॉर्म में, जवाब सबमिट करने के बाद उसमें बदलाव करने के लिए लिंक दिखेगा या नहीं. |
setCollectEmail(collect) | Form | इससे यह तय होता है कि फ़ॉर्म में जवाब देने वालों के ईमेल पते इकट्ठा किए जाएंगे या नहीं. |
setConfirmationMessage(message) | Form | फ़ॉर्म के लिए पुष्टि करने वाला मैसेज सेट करता है. |
setCustomClosedFormMessage(message) | Form | अगर फ़ॉर्म पर जवाब स्वीकार नहीं किए जा रहे हैं, तो यह मैसेज दिखाने के लिए सेट किया जाता है. |
setDescription(description) | Form | फ़ॉर्म का ब्यौरा सेट करता है. |
setDestination(type, id) | Form | वह डेस्टिनेशन सेट करता है जहां फ़ॉर्म के जवाब सेव किए जाते हैं. |
setIsQuiz(enabled) | Form | यह सेट करता है कि फ़ॉर्म क्विज़ है या नहीं. |
setLimitOneResponsePerUser(enabled) | Form | इससे यह सेट होता है कि फ़ॉर्म में हर व्यक्ति सिर्फ़ एक जवाब दे सकता है या नहीं. |
setProgressBar(enabled) | Form | इससे यह सेट होता है कि फ़ॉर्म में प्रोग्रेस बार है या नहीं. |
setPublishingSummary(enabled) | Form | इससे यह तय होता है कि जवाब देने वाला व्यक्ति फ़ॉर्म सबमिट करने के बाद, जवाबों की खास जानकारी देखने के लिए लिंक देख पाएगा या नहीं. |
setShowLinkToRespondAgain(enabled) | Form | इससे यह तय होता है कि जवाब देने वाला व्यक्ति फ़ॉर्म भरने के बाद, एक और जवाब सबमिट करने के लिए लिंक देख पाएगा या नहीं. |
setShuffleQuestions(shuffle) | Form | इससे यह तय होता है कि फ़ॉर्म के हर पेज पर सवालों का क्रम रैंडम होगा या नहीं. |
setTitle(title) | Form | फ़ॉर्म का टाइटल सेट करता है. |
shortenFormUrl(url) | String | किसी फ़ॉर्म के लंबे यूआरएल को छोटे यूआरएल में बदलता है. |
submitGrades(responses) | Form | दिए गए FormResponses के लिए ग्रेड सबमिट करता है. |
ज़्यादा जानकारी वाला दस्तावेज़
addCheckboxGridItem()
कॉलम और पंक्तियों के ग्रिड के तौर पर दिखाया जाने वाला नया सवाल आइटम जोड़ता है. इससे, जवाब देने वाले व्यक्ति को हर पंक्ति में चेकबॉक्स के क्रम से कई विकल्प चुनने की सुविधा मिलती है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Adds a checkbox grid item. const item = form.addCheckboxGridItem(); item.setTitle('Where did you celebrate New Year\'s?'); // Sets the grid's rows and columns. item.setRows(['New York', 'San Francisco', 'London']).setColumns([ '2014', '2015', '2016', '2017' ]);
वापसी का टिकट
CheckboxGridItem
— नया आइटम.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addCheckboxItem()
एक नया सवाल जोड़ता है. इससे जवाब देने वाले व्यक्ति को एक या उससे ज़्यादा चेकबॉक्स चुनने की सुविधा मिलती है. साथ ही, जवाब देने के लिए "अन्य" फ़ील्ड भी उपलब्ध होता है. हालांकि, जवाब देने के लिए इस फ़ील्ड का इस्तेमाल करना ज़रूरी नहीं है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Adds a checkbox item. const item = form.addCheckboxItem(); // Sets the title of the checkbox item to 'Do you prefer cats or dogs?' item.setTitle('Do you prefer cats or dogs?'); // Sets the choices. item.setChoiceValues(['Cats', 'Dogs']);
वापसी का टिकट
CheckboxItem
— नया आइटम.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addDateItem()
एक नया सवाल जोड़ता है, ताकि जवाब देने वाला व्यक्ति तारीख बता सके.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Adds a date item. const item = form.addDateItem(); // Sets the title to 'When were you born?' item.setTitle('When were you born?'); // Sets the description for the date item. item.setHelpText('Some helper text.');
वापसी का टिकट
DateItem
— नया आइटम.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addDateTimeItem()
एक नया सवाल जोड़ता है, ताकि जवाब देने वाला व्यक्ति तारीख और समय बता सके.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Adds a question with date and time inputs. const item = form.addDateTimeItem(); // Sets the title to 'When were you born?' item.setTitle('When were you born?'); // Sets the question as required. item.setRequired(true);
वापसी का टिकट
DateTimeItem
— नया आइटम.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addDurationItem()
एक नया सवाल जोड़ता है, ताकि जवाब देने वाला व्यक्ति समय की जानकारी दे सके.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Adds a question with a duration input. const item = form.addDurationItem(); // Sets the title to 'How long can you hold your breath?' item.setTitle('How long can you hold your breath?'); // Sets the question as required. item.setRequired(true);
वापसी का टिकट
DurationItem
— नया आइटम.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addEditor(emailAddress)
इस निर्देश से, दिए गए उपयोगकर्ता को Form
के लिए, संपादकों की सूची में जोड़ दिया जाता है. अगर उपयोगकर्ता पहले से ही दर्शकों की सूची में शामिल था, तो इस तरीके से उपयोगकर्ता को दर्शकों की सूची से हटा दिया जाता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
emailAddress | String | जो उपयोगकर्ता जोड़ना है उसका ईमेल पता. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addEditor(user)
इस निर्देश से, दिए गए उपयोगकर्ता को Form
के लिए, संपादकों की सूची में जोड़ दिया जाता है. अगर उपयोगकर्ता पहले से ही दर्शकों की सूची में शामिल था, तो इस तरीके से उपयोगकर्ता को दर्शकों की सूची से हटा दिया जाता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
user | User | जोड़े जाने वाले उपयोगकर्ता की जानकारी. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addEditors(emailAddresses)
Form
के लिए, संपादकों की सूची में उपयोगकर्ताओं के दिए गए कलेक्शन को जोड़ता है. अगर कोई उपयोगकर्ता पहले से ही दर्शकों की सूची में शामिल था, तो इस तरीके से उसे दर्शकों की सूची से हटा दिया जाता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
emailAddresses | String[] | जोड़े जाने वाले उपयोगकर्ताओं के ईमेल पतों का कलेक्शन. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addGridItem()
कॉलम और पंक्तियों के ग्रिड के तौर पर दिखाया जाने वाला नया सवाल जोड़ता है. इससे, जवाब देने वाले व्यक्ति को रेडियो बटन के क्रम से हर पंक्ति में एक विकल्प चुनने की सुविधा मिलती है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Adds a multiple choice grid. const item = form.addGridItem(); // Sets the title to 'Rate your interests.' item.setTitle('Rate your interests'); // Sets the grid's rows and columns. item.setRows(['Cars', 'Computers', 'Celebrities']).setColumns([ 'Boring', 'So-so', 'Interesting' ]);
वापसी का टिकट
GridItem
— नया आइटम.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addImageItem()
इमेज दिखाने वाला नया लेआउट आइटम जोड़ता है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Adds an image item. const item = form.addImageItem(); // Gets the Google icon to use as the image. const img = UrlFetchApp.fetch( 'https://fonts.gstatic.com/s/i/productlogos/googleg/v6/web-24dp/logo_googleg_color_1x_web_24dp.png', ); // Sets the image, title, and description for the item. item.setTitle('Google icon').setHelpText('Google icon').setImage(img);
वापसी का टिकट
ImageItem
— नया आइटम.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addListItem()
एक नया सवाल जोड़ता है, जिससे जवाब देने वाले व्यक्ति को ड्रॉपडाउन सूची से एक विकल्प चुनने की सुविधा मिलती है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Adds a dropdown list to the form. const item = form.addListItem(); // Sets the title to 'Do you prefer cats or dogs?' item.setTitle('Do you prefer cats or dogs?'); // Sets the description to 'This is description text...' item.setHelpText('This is description text...'); // Creates and adds choices to the dropdown list. item.setChoices([item.createChoice('dog'), item.createChoice('cat')]);
वापसी का टिकट
ListItem
— नया आइटम.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addMultipleChoiceItem()
एक नया सवाल जोड़ता है. इससे जवाब देने वाले व्यक्ति को रेडियो बटन की सूची से कोई विकल्प चुनने या वैकल्पिक "अन्य" फ़ील्ड को चुनने का विकल्प मिलता है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Adds a multiple choice item to the form. const item = form.addMultipleChoiceItem(); // Sets the title. item.setTitle('What is your favorite ice cream flavor?'); // Creates some choice items. const vanilla = item.createChoice('vanilla'); const chocolate = item.createChoice('chocolate'); const strawberry = item.createChoice('strawberry'); // Sets the choices. item.setChoices([vanilla, chocolate, strawberry]);
वापसी का टिकट
MultipleChoiceItem
— नया आइटम.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addPageBreakItem()
एक नया लेआउट आइटम जोड़ता है, जो किसी पेज की शुरुआत को मार्क करता है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Adds page break items to create a second and third page for the form. const pageTwo = form.addPageBreakItem(); const pageThree = form.addPageBreakItem(); // Sets the titles for the pages. pageTwo.setTitle('Page two'); pageThree.setTitle('Page three'); // Upon completion of the first page, sets the form to navigate to the third // page. pageTwo.setGoToPage(pageThree); // Upon completion of the second page, sets the form to navigate back to the // first page. pageThree.setGoToPage(FormApp.PageNavigationType.RESTART);
वापसी का टिकट
PageBreakItem
— नया आइटम.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addParagraphTextItem()
एक नया सवाल जोड़ता है, जिससे जवाब देने वाले व्यक्ति को टेक्स्ट का एक ब्लॉक डालने की सुविधा मिलती है.
// Opens the form by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Adds the paragraph text item. const item = form.addParagraphTextItem(); // Sets the title to 'What is your address?' item.setTitle('What is your address?');
वापसी का टिकट
ParagraphTextItem
— नया आइटम.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addScaleItem()
एक नया सवाल जोड़ता है. इससे जवाब देने वाले व्यक्ति को, रेडियो बटन के नंबर वाले क्रम से एक विकल्प चुनने की सुविधा मिलती है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Adds the scale item. const item = form.addScaleItem(); // Sets the title of the scale item to 'Choose a number.' item.setTitle('Choose a number'); // Sets the scale to 1-5. item.setBounds(1, 5); // Sets the label for the lower and upper bounds. item.setLabels('Lowest', 'Highest');
वापसी का टिकट
ScaleItem
— नया आइटम.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addSectionHeaderItem()
एक नया लेआउट आइटम जोड़ता है, जो किसी सेक्शन की शुरुआत को विज़ुअल तौर पर दिखाता है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Adds the section heading item. const item = form.addSectionHeaderItem(); // Sets the title to 'Title of new section.' item.setTitle('Title of new section'); // Sets the description. item.setHelpText('Description of new section');
वापसी का टिकट
SectionHeaderItem
— नया आइटम.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addTextItem()
एक नया सवाल जोड़ता है, ताकि जवाब देने वाला व्यक्ति एक लाइन का टेक्स्ट डाल सके.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Adds a single-line text item. const item = form.addTextItem(); // Sets the title to 'What is your name?' item.setTitle('What is your name?');
वापसी का टिकट
TextItem
— नया आइटम.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addTimeItem()
एक नया सवाल जोड़ता है, ताकि जवाब देने वाला व्यक्ति दिन का समय बता सके.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Adds a question with a time input. const item = form.addTimeItem(); // Sets the title to 'What time do you usually wake up in the morning?' item.setTitle('What time do you usually wake up in the morning?');
वापसी का टिकट
TimeItem
— नया आइटम.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
addVideoItem()
वीडियो दिखाने वाला नया लेआउट आइटम जोड़ता है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Adds a video item. const item = form.addVideoItem(); // Sets the title, description, and video. item.setTitle('YouTube video') .setHelpText('Send content automatically via Google Sheets and Apps Script') .setVideoUrl('https://youtu.be/xxgQr-jSu9o'); // Sets the alignment to the center. item.setAlignment(FormApp.Alignment.CENTER);
वापसी का टिकट
VideoItem
— नया आइटम.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
canEditResponse()
इससे यह तय होता है कि फ़ॉर्म में, जवाब सबमिट करने के बाद उसमें बदलाव करने के लिए लिंक दिखेगा या नहीं.
इस सेटिंग के बावजूद, FormResponse.getEditResponseUrl()
तरीके से स्क्रिप्ट के लेखक को, फ़ॉर्म में बदलाव करने का ऐक्सेस मिलता है. इससे वह ऐसा यूआरएल जनरेट कर सकता है जिसका इस्तेमाल जवाब में बदलाव करने के लिए किया जा सकता है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Checks if the form displays a link to edit a response after submitting it. // The default is false. To let people edit their responses, use // form.setAllowResponseEdits(true). const edit = form.canEditResponse(); // If the form doesn't let people edit responses, logs false to the console. console.log(edit);
वापसी का टिकट
Boolean
— अगर फ़ॉर्म में "अपने जवाब में बदलाव करें" लिंक दिखता है, तो true
. अगर यह लिंक नहीं दिखता है, तो false
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
collectsEmail()
इससे यह तय होता है कि फ़ॉर्म में जवाब देने वालों के ईमेल पते इकट्ठा किए जाते हैं या नहीं.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Sets the form to not collect respondents' email addresses. form.setCollectEmail(false); // Checks whether the form collects respondents' email addresses and logs it to // the console. const bool = form.collectsEmail(); console.log(bool);
वापसी का टिकट
Boolean
— true
, अगर फ़ॉर्म में ईमेल पते इकट्ठा किए जाते हैं; false
, अगर नहीं किए जाते.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
createResponse()
फ़ॉर्म में नया जवाब जोड़ता है. किसी सवाल वाले आइटम का जवाब देने के लिए, उस आइटम से ItemResponse
बनाएं. इसके बाद, FormResponse.withItemResponse(response)
को कॉल करके, उसे इस फ़ॉर्म के रिस्पॉन्स से अटैच करें. इकट्ठा किए गए जवाब को सेव करने के लिए, FormResponse.submit()
को कॉल करें.
वापसी का टिकट
FormResponse
— फ़ॉर्म का नया जवाब.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
deleteAllResponses()
फ़ॉर्म के जवाबों के स्टोर से, सबमिट किए गए सभी जवाब मिटा देता है. इस तरीके से, जवाबों के बाहरी डेस्टिनेशन (जैसे, स्प्रेडशीट) में सेव की गई कॉपी नहीं मिटतीं. हालांकि, फ़ॉर्म की खास जानकारी वाला व्यू मिट जाता है.
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
deleteItem(index)
फ़ॉर्म में मौजूद सभी आइटम में से, किसी दिए गए इंडेक्स पर मौजूद आइटम को मिटाता है. अगर दिए गए इंडेक्स में कोई आइटम मौजूद नहीं है, तो स्क्रिप्टिंग अपवाद दिखाता है.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Gets all the items from the form. const items = form.getItems(); // Finds the index of a paragraph text item and deletes it by the item's index. const index = items.findIndex( (item) => item.getType() === FormApp.ItemType.PARAGRAPH_TEXT, ); if (index !== -1) { form.deleteItem(index); }
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
index | Integer | फ़ॉर्म में मौजूद सभी आइटम में से आइटम का इंडेक्स. |
थ्रो
Error
— अगर दिए गए इंडेक्स में कोई आइटम मौजूद नहीं है
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
deleteItem(item)
दिए गए आइटम को मिटाता है. अगर आइटम पहले ही मिटा दिया गया है, तो स्क्रिप्टिंग अपवाद दिखाता है.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Gets all of the items from the form. const items = form.getItems(); // Finds a paragraph text item and deletes it. const item = items.find( (item) => item.getType() === FormApp.ItemType.PARAGRAPH_TEXT, ); if (item) { form.deleteItem(item); }
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
item | Item | वह आइटम जिसे मिटाना है. |
थ्रो
Error
— अगर आइटम फ़ॉर्म में मौजूद नहीं है
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
deleteResponse(responseId)
फ़ॉर्म के जवाबों के स्टोर से एक जवाब मिटाता है. इस तरीके से, जवाबों के डेस्टिनेशन (जैसे, स्प्रेडशीट) में सेव किए गए जवाबों की कॉपी नहीं मिटतीं. हालांकि, फ़ॉर्म के खास जानकारी वाले व्यू से जवाब हट जाता है. रिस्पॉन्स आईडी को FormResponse.getId()
की मदद से वापस पाया जा सकता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
responseId | String | फ़ॉर्म में दिए गए उस जवाब का आईडी जिसे मिटाना है. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getConfirmationMessage()
फ़ॉर्म की पुष्टि करने वाला मैसेज पाता है.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Sets the confirmation message to display after someone submits the form. form.setConfirmationMessage('You successfully submitted the form.'); // Gets the confirmation message and logs it to the console. const message = form.getConfirmationMessage(); console.log(message);
वापसी का टिकट
String
— फ़ॉर्म के लिए पुष्टि करने वाला मैसेज.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getCustomClosedFormMessage()
यह फ़ंक्शन, कस्टम मैसेज दिखाता है. यह मैसेज तब दिखता है, जब फ़ॉर्म में जवाब स्वीकार नहीं किए जा रहे हों. अगर कोई कस्टम मैसेज सेट नहीं किया गया है, तो यह खाली स्ट्रिंग दिखाता है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Sets a custom closed form message to display to the user when the form // no longer accepts responses. form.setCustomClosedFormMessage('The form is no longer accepting responses.'); // Gets the custom message set for the form and logs it to the console. const message = form.getCustomClosedFormMessage(); console.log(message);
वापसी का टिकट
String
— अगर फ़ॉर्म में जवाब स्वीकार नहीं किए जा रहे हैं, तो दिखाने के लिए कस्टम मैसेज या कोई कस्टम मैसेज सेट न होने पर खाली स्ट्रिंग.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getDescription()
फ़ॉर्म की जानकारी दिखाता है.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Sets the form description. form.setDescription('This is the form description.'); // Gets the form description and logs it to the console. const description = form.getDescription(); console.log(description);
वापसी का टिकट
String
— फ़ॉर्म का ब्यौरा.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getDestinationId()
फ़ॉर्म के रिस्पॉन्स डेस्टिनेशन का आईडी पाता है.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Creates a spreadsheet to use as the response destination. const ss = SpreadsheetApp.create('Test_Spreadsheet'); // Updates the form's response destination. form.setDestination(FormApp.DestinationType.SPREADSHEET, ss.getId()); // Gets the ID of the form's response destination and logs it to the console. const destinationId = form.getDestinationId(); console.log(destinationId);
वापसी का टिकट
String
— फ़ॉर्म के रिस्पॉन्स डेस्टिनेशन का आईडी.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getDestinationType()
फ़ॉर्म के रिस्पॉन्स डेस्टिनेशन का टाइप दिखाता है.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc1234556/edit', ); // Gets the type of the form's response destination and logs it to the console. const destinationType = form.getDestinationType().name(); console.log(destinationType);
वापसी का टिकट
DestinationType
— फ़ॉर्म के रिस्पॉन्स डेस्टिनेशन का टाइप.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getEditUrl()
फ़ॉर्म के बदलाव मोड को ऐक्सेस करने के लिए इस्तेमाल किया जा सकने वाला यूआरएल मिलता है.
// Opens the form by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Gets the URL that accesses the form's edit mode and logs it to the console. const url = form.getEditUrl(); console.log(url);
वापसी का टिकट
String
— फ़ॉर्म में बदलाव करने के लिए यूआरएल.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getEditors()
इस Form
के लिए, एडिटर की सूची दिखाता है.
वापसी का टिकट
User[]
— बदलाव करने की अनुमति वाले उपयोगकर्ताओं का कलेक्शन.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getId()
फ़ॉर्म का आईडी पाता है.
// Opens the form by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Gets the ID of the form and logs it to the console. const id = form.getId(); console.log(id);
वापसी का टिकट
String
— फ़ॉर्म का आईडी.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getItemById(id)
दिए गए आईडी वाला आइटम दिखाता है. अगर आईडी, फ़ॉर्म में मौजूद किसी आइटम से मेल नहीं खाता है, तो null
दिखाता है.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Gets the ID of the first item on the form. const itemId = form.getItems()[0].getId(); // Gets the item from the ID. const item = form.getItemById(itemId); // Gets the name of the item type and logs it to the console. const type = item.getType().name(); console.log(type);
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
id | Integer | आइटम का आईडी. |
वापसी का टिकट
Item
— दिए गए आईडी वाला आइटम या अगर आइटम फ़ॉर्म में मौजूद नहीं है, तो null
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getItems()
फ़ॉर्म में मौजूद सभी आइटम का कलेक्शन दिखाता है.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Gets the list of items in the form. const items = form.getItems(); // Gets the type for each item and logs them to the console. const types = items.map((item) => item.getType().name()); console.log(types);
वापसी का टिकट
Item[]
— फ़ॉर्म में मौजूद सभी आइटम का कलेक्शन.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getItems(itemType)
यह किसी दिए गए टाइप के सभी आइटम का ऐरे दिखाता है.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Gets a list of all checkbox items on the form. const items = form.getItems(FormApp.ItemType.CHECKBOX); // Gets the title of each checkbox item and logs them to the console. const checkboxItemsTitle = items.map( (item) => item.asCheckboxItem().getTitle(), ); console.log(checkboxItemsTitle);
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
itemType | ItemType | वापस लाने के लिए आइटम का टाइप. |
वापसी का टिकट
Item[]
— उस टाइप के सभी आइटम का कलेक्शन.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getPublishedUrl()
वह यूआरएल पाता है जिसका इस्तेमाल फ़ॉर्म का जवाब देने के लिए किया जा सकता है.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Gets the URL to respond to the form and logs it to the console. const url = form.getPublishedUrl(); console.log(url);
वापसी का टिकट
String
— फ़ॉर्म का जवाब देने के लिए यूआरएल.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getResponse(responseId)
रिस्पॉन्स आईडी के आधार पर, फ़ॉर्म का एक रिस्पॉन्स मिलता है. रिस्पॉन्स आईडी, FormResponse.getId()
से वापस पाए जा सकते हैं.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
responseId | String | फ़ॉर्म के जवाब का आईडी. |
वापसी का टिकट
FormResponse
— फ़ॉर्म का जवाब.
थ्रो
Error
— अगर जवाब मौजूद नहीं है
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getResponses()
फ़ॉर्म के सभी जवाबों का कलेक्शन मिलता है.
वापसी का टिकट
FormResponse[]
— फ़ॉर्म के सभी जवाबों का कलेक्शन.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getResponses(timestamp)
किसी तारीख और समय के बाद, फ़ॉर्म के सभी जवाबों का कलेक्शन दिखाता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
timestamp | Date | वह तारीख और समय जब फ़ॉर्म के जवाब दिखाए जाने चाहिए. |
वापसी का टिकट
FormResponse[]
— फ़ॉर्म के जवाबों की सूची.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getShuffleQuestions()
इससे यह तय होता है कि फ़ॉर्म के हर पेज पर सवालों का क्रम रैंडम है या नहीं.
वापसी का टिकट
Boolean
— true
अगर फ़ॉर्म के हर पेज पर सवालों का क्रम रैंडम है, तो;
false
अगर नहीं है.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getSummaryUrl()
वह यूआरएल पाता है जिसका इस्तेमाल, फ़ॉर्म के जवाबों की खास जानकारी देखने के लिए किया जा सकता है. जब तक setPublishingSummary(enabled)
को true
पर सेट नहीं किया जाता, तब तक सिर्फ़ वे उपयोगकर्ता यूआरएल को ऐक्सेस कर सकते हैं जिनके पास फ़ॉर्म में बदलाव करने की अनुमति है.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // Opens the form by its URL. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Gets the URL to view a summary of the form's responses and logs it to the // console. const url = form.getSummaryUrl(); console.log(url);
वापसी का टिकट
String
— जवाबों की खास जानकारी देखने के लिए यूआरएल.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
getTitle()
फ़ॉर्म का टाइटल दिखाता है.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Sets the title of the form to 'For_Testing.' form.setTitle('For_Testing'); // Gets the title of the form and logs it to the console. const title = form.getTitle(); console.log(title);
वापसी का टिकट
String
— फ़ॉर्म का टाइटल.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
hasLimitOneResponsePerUser()
यह तय करता है कि फ़ॉर्म में हर व्यक्ति सिर्फ़ एक जवाब दे सकता है या नहीं. अगर वैल्यू true
है, तो स्क्रिप्ट फ़ॉर्म के जवाब सबमिट नहीं कर सकती.
वापसी का टिकट
Boolean
— true
, अगर फ़ॉर्म में हर व्यक्ति को सिर्फ़ एक जवाब देने की अनुमति है; false
, अगर नहीं.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
hasProgressBar()
इससे तय होता है कि फ़ॉर्म में प्रोग्रेस बार दिखेगा या नहीं.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // Opens the form by its URL. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Displays the progress bar on the form. form.setProgressBar(true); // Checks if the form displays a progress bar and logs it to the console. console.log(form.hasProgressBar());
वापसी का टिकट
Boolean
— अगर फ़ॉर्म में प्रोग्रेस बार दिखता है, तो true
; अगर नहीं दिखता है, तो false
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
hasRespondAgainLink()
इससे यह तय होता है कि फ़ॉर्म भरने के बाद, जवाब देने वाले व्यक्ति को एक और जवाब सबमिट करने के लिए लिंक दिखेगा या नहीं.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Sets the form to display a link to submit another // response after someone submits the form. form.setShowLinkToRespondAgain(true); // Checks if the form displays a 'Submit another response' link and logs it to // the console. console.log(form.hasRespondAgainLink());
वापसी का टिकट
Boolean
— अगर फ़ॉर्म में "दूसरा जवाब सबमिट करें" लिंक दिखता है, तो true
डालें. अगर यह लिंक नहीं दिखता है, तो false
डालें.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
isAcceptingResponses()
यह तय करता है कि फ़ॉर्म पर फ़िलहाल जवाब स्वीकार किए जा रहे हैं या नहीं.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Sets the form to accept responses. form.setAcceptingResponses(true); // Checks if the form is accepting responses or not and logs it to the console. const accepting = form.isAcceptingResponses(); console.log(accepting);
वापसी का टिकट
Boolean
— अगर फ़ॉर्म पर जवाब स्वीकार किए जा रहे हैं, तो true
; अगर नहीं, तो false
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
isPublishingSummary()
इससे यह तय होता है कि जवाब देने वाला व्यक्ति फ़ॉर्म भरने के बाद, जवाबों की खास जानकारी देखने के लिए लिंक देख पाएगा या नहीं.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Sets the form to display a link to a summary of // the responses after someone submits the form. form.setPublishingSummary(true); // Checks if the form displays a "See previous responses" link and logs it to // the console. const publishingLink = form.isPublishingSummary(); console.log(publishingLink);
वापसी का टिकट
Boolean
— अगर फ़ॉर्म में "पिछले जवाब देखें" लिंक दिखता है, तो true
. अगर ऐसा नहीं दिखता है, तो false
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
isQuiz()
यह तय करता है कि फ़ॉर्म क्विज़ है या नहीं.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Sets the form as a quiz. form.setIsQuiz(true); // Checks if the form is a quiz or not and logs it to the console. console.log(form.isQuiz());
वापसी का टिकट
Boolean
— अगर फ़ॉर्म पर जवाब स्वीकार किए जा रहे हैं, तो true
; अगर नहीं, तो false
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
moveItem(from, to)
फ़ॉर्म में मौजूद सभी आइटम में से किसी आइटम को दिए गए इंडेक्स से किसी दूसरे इंडेक्स पर ले जाता है. अगर to
इंडेक्स, तय सीमा से ज़्यादा है, तो स्क्रिप्टिंग अपवाद दिखाता है.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Moves the first item to be the last item. form.moveItem(0, form.getItems().length - 1);
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
from | Integer | फ़ॉर्म में मौजूद सभी आइटम में से, आइटम का मौजूदा इंडेक्स. |
to | Integer | फ़ॉर्म में मौजूद सभी आइटम के बीच, आइटम का नया इंडेक्स. |
वापसी का टिकट
Item
— वह आइटम जिसे मूव किया गया था.
थ्रो
Error
— अगर कोई भी इंडेक्स तय सीमा से बाहर है.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
moveItem(item, toIndex)
फ़ॉर्म में मौजूद सभी आइटम में से किसी आइटम को दिए गए इंडेक्स पर ले जाता है. अगर दिया गया इंडेक्स तय सीमा से बाहर है, तो स्क्रिप्टिंग से जुड़ा अपवाद दिखाता है.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Gets the first item. const item = form.getItems()[0]; // Moves the item to be the last item. form.moveItem(item, form.getItems().length - 1);
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
item | Item | वह आइटम जिसे दूसरी जगह ले जाना है. |
toIndex | Integer | फ़ॉर्म में मौजूद सभी आइटम के बीच, आइटम का नया इंडेक्स. |
वापसी का टिकट
Item
— वह आइटम जिसे मूव किया गया था.
थ्रो
Error
— अगर इंडेक्स तय सीमा से ज़्यादा है.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
removeDestination()
फ़ॉर्म को उसके मौजूदा रिस्पॉन्स डेस्टिनेशन से अनलिंक करता है. अनलिंक किए गए पुराने डेस्टिनेशन में, अब भी सभी जवाबों की कॉपी मौजूद रहती है. सभी फ़ॉर्म, जवाबों की एक कॉपी को फ़ॉर्म के रिस्पॉन्स स्टोर में सेव करते हैं. इनमें वे फ़ॉर्म भी शामिल हैं जिनके लिए डेस्टिनेशन साफ़ तौर पर सेट नहीं किया गया है. अगर फ़ॉर्म में फ़िलहाल कोई रिस्पॉन्स डेस्टिनेशन नहीं है, तो इस तरीके का कोई असर नहीं पड़ेगा.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Opens a spreadsheet to use for the response destination. // TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl( 'https://docs.google.com/spreadsheets/d/abc123456/edit', ); // Updates the form's response destination to the spreadsheet. form.setDestination(FormApp.DestinationType.SPREADSHEET, ss.getId()); // Unlinks the form from the spreadsheet. form.removeDestination();
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
removeEditor(emailAddress)
Form
के एडिटर की सूची से, दिए गए उपयोगकर्ता को हटाता है. इस तरीके से, उन उपयोगकर्ताओं को Form
ऐक्सेस करने से नहीं रोका जाता है जिनके पास सामान्य ऐक्सेस होता है. उदाहरण के लिए, अगर Form
को उपयोगकर्ता के पूरे डोमेन के साथ शेयर किया गया है या Form
किसी शेयर की गई ड्राइव में मौजूद है जिसे उपयोगकर्ता ऐक्सेस कर सकता है.
Drive में मौजूद फ़ाइलों के लिए, इससे उपयोगकर्ता को दर्शकों की सूची से भी हटा दिया जाता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
emailAddress | String | जिस उपयोगकर्ता को हटाना है उसका ईमेल पता. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
removeEditor(user)
Form
के एडिटर की सूची से, दिए गए उपयोगकर्ता को हटाता है. इस तरीके से, उन उपयोगकर्ताओं को Form
ऐक्सेस करने से नहीं रोका जाता है जिनके पास सामान्य ऐक्सेस होता है. उदाहरण के लिए, अगर Form
को उपयोगकर्ता के पूरे डोमेन के साथ शेयर किया गया है या Form
किसी शेयर की गई ड्राइव में मौजूद है जिसे उपयोगकर्ता ऐक्सेस कर सकता है.
Drive में मौजूद फ़ाइलों के लिए, इससे उपयोगकर्ता को दर्शकों की सूची से भी हटा दिया जाता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
user | User | हटाए जाने वाले उपयोगकर्ता की जानकारी. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setAcceptingResponses(enabled)
यह सेट करता है कि फ़ॉर्म पर फ़िलहाल जवाब स्वीकार किए जा रहे हैं या नहीं. नए फ़ॉर्म के लिए डिफ़ॉल्ट true
है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Sets the form to accept responses. form.setAcceptingResponses(true); // Checks whether the form is accepting responses or not and logs it to the // console. console.log(form.isAcceptingResponses());
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
enabled | Boolean | true अगर फ़ॉर्म पर जवाब स्वीकार किए जाने चाहिए; false अगर नहीं. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setAllowResponseEdits(enabled)
इससे यह तय होता है कि फ़ॉर्म में, जवाब सबमिट करने के बाद उसमें बदलाव करने के लिए लिंक दिखेगा या नहीं. नए फ़ॉर्म के लिए डिफ़ॉल्ट false
होता है.
इस सेटिंग के बावजूद, FormResponse.getEditResponseUrl()
का तरीका इस्तेमाल करके, स्क्रिप्ट के लेखक को एक यूआरएल जनरेट करने की अनुमति मिलती है. इस यूआरएल का इस्तेमाल, जवाब में बदलाव करने के लिए किया जा सकता है. हालांकि, इसके लिए ज़रूरी है कि लेखक के पास फ़ॉर्म में बदलाव करने की अनुमति हो.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Shows "Edit your response" link after someone submits the form. form.setAllowResponseEdits(true); // Checks whether the option to edit the form after a user submits it is set to // true or not and logs it to the console. console.log(form.canEditResponse());
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
enabled | Boolean | true अगर फ़ॉर्म में "अपने जवाब में बदलाव करें" लिंक दिखना चाहिए; false अगर नहीं. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setCollectEmail(collect)
इससे यह तय होता है कि फ़ॉर्म में जवाब देने वालों के ईमेल पते इकट्ठा किए जाएंगे या नहीं. नए फ़ॉर्म के लिए डिफ़ॉल्ट false
है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Sets the form to collect respondents' email addresses. form.setCollectEmail(true); // Checks whether the value is set to true or false and logs it to the console. const collect = form.collectsEmail(); console.log(collect);
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
collect | Boolean | true अगर फ़ॉर्म में ईमेल पते इकट्ठा करने हैं, तो false अगर नहीं. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setConfirmationMessage(message)
फ़ॉर्म के लिए पुष्टि करने वाला मैसेज सेट करता है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Sets a custom confirmation message to display after someone submits the form. form.setConfirmationMessage('Your form has been successfully submitted.'); // Gets the confirmation message set for the form and logs it to the console. const message = form.getConfirmationMessage(); console.log(message);
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
message | String | फ़ॉर्म के लिए पुष्टि करने वाला नया मैसेज. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setCustomClosedFormMessage(message)
अगर फ़ॉर्म पर जवाब स्वीकार नहीं किए जा रहे हैं, तो यह मैसेज दिखाने के लिए सेट किया जाता है. अगर कोई मैसेज सेट नहीं किया गया है, तो फ़ॉर्म में डिफ़ॉल्ट मैसेज का इस्तेमाल किया जाता है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Sets the form to not accept responses. form.setAcceptingResponses(false); // Sets a custom closed form message to display to the user. form.setCustomClosedFormMessage('The form is no longer accepting responses.'); // Gets the custom message set for the form and logs it to the console. const message = form.getCustomClosedFormMessage(); console.log(message);
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
message | String | अगर फ़ॉर्म पर जवाब देने की सुविधा बंद है, तो यह मैसेज दिखेगा. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setDescription(description)
फ़ॉर्म का ब्यौरा सेट करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
description | String | फ़ॉर्म का नया ब्यौरा. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setDestination(type, id)
वह डेस्टिनेशन सेट करता है जहां फ़ॉर्म के जवाब सेव किए जाते हैं. सभी फ़ॉर्म, जिनमें साफ़ तौर पर कोई डेस्टिनेशन सेट नहीं किया गया है, फ़ॉर्म के रिस्पॉन्स स्टोर में रिस्पॉन्स की कॉपी सेव करते हैं.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
type | DestinationType | फ़ॉर्म के रिस्पॉन्स डेस्टिनेशन का टाइप. |
id | String | फ़ॉर्म के रिस्पॉन्स डेस्टिनेशन का आईडी. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
थ्रो
Error
— अगर दिया गया डेस्टिनेशन आईडी अमान्य है
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setIsQuiz(enabled)
यह सेट करता है कि फ़ॉर्म क्विज़ है या नहीं. नए फ़ॉर्म के लिए डिफ़ॉल्ट false
है.
ग्रेड वाले सवाल सिर्फ़ क्विज़ में पूछे जा सकते हैं. इसलिए, इस विकल्प को false
पर सेट करने पर, सभी सवालों से ग्रेड देने के सभी विकल्प हट जाते हैं.
क्विज़ की सेटिंग सिर्फ़ Forms के नए यूज़र इंटरफ़ेस (यूआई) में उपलब्ध हैं. किसी फ़ॉर्म को क्विज़ बनाकर, उसे नए यूआई का इस्तेमाल करने के लिए ऑप्ट इन किया जा सकता है.
// Opens the Forms file by its URL. If you created your script from within a // Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Makes the form a quiz. form.setIsQuiz(true); // Checks whether the form is a quiz or not and logs it to the console. console.log(form.isQuiz());
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
enabled | Boolean | true अगर फ़ॉर्म के लिए क्विज़ की सुविधाएं चालू करनी हैं, तो false अगर नहीं. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setLimitOneResponsePerUser(enabled)
इससे यह सेट होता है कि फ़ॉर्म में हर व्यक्ति सिर्फ़ एक जवाब दे सकता है या नहीं. नए फ़ॉर्म के लिए डिफ़ॉल्ट false
है. अगर इसकी वैल्यू true
पर सेट है, तो स्क्रिप्ट फ़ॉर्म के जवाबों को बिल्कुल भी सबमिट नहीं कर सकती.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
enabled | Boolean | true अगर फ़ॉर्म में हर व्यक्ति को सिर्फ़ एक जवाब देने की अनुमति होनी चाहिए; false अगर नहीं. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setProgressBar(enabled)
इससे यह सेट होता है कि फ़ॉर्म में प्रोग्रेस बार है या नहीं. नए फ़ॉर्म के लिए डिफ़ॉल्ट false
है.
// Opens the Forms file by its URL. If you created your script from within // a Google Forms file, you can use FormApp.getActiveForm() instead. // TODO(developer): Replace the URL with your own. const form = FormApp.openByUrl( 'https://docs.google.com/forms/d/abc123456/edit', ); // Displays the progress bar on the form. form.setProgressBar(true); // Checks whether the form has a progress bar and logs it to the console. console.log(form.hasProgressBar());
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
enabled | Boolean | true अगर फ़ॉर्म में प्रोग्रेस बार दिखता है, तो false अगर नहीं दिखता है. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setPublishingSummary(enabled)
इससे यह तय होता है कि जवाब देने वाला व्यक्ति फ़ॉर्म सबमिट करने के बाद, जवाबों की खास जानकारी देखने के लिए लिंक देख पाएगा या नहीं. नए फ़ॉर्म के लिए डिफ़ॉल्ट false
है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
enabled | Boolean | true अगर फ़ॉर्म में "पिछले जवाब देखें" लिंक दिखाना है, तो false नहीं दिखाना है. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setShowLinkToRespondAgain(enabled)
इससे यह तय होता है कि जवाब देने वाला व्यक्ति फ़ॉर्म भरने के बाद, एक और जवाब सबमिट करने के लिए लिंक देख पाएगा या नहीं. नए फ़ॉर्म के लिए डिफ़ॉल्ट true
है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
enabled | Boolean | true अगर फ़ॉर्म में "दूसरा जवाब सबमिट करें" लिंक दिखना चाहिए; false अगर नहीं. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setShuffleQuestions(shuffle)
इससे यह तय होता है कि फ़ॉर्म के हर पेज पर सवालों का क्रम रैंडम होगा या नहीं.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
shuffle | Boolean | true अगर फ़ॉर्म के हर पेज पर सवालों का क्रम रैंडम होना चाहिए, तो false नहीं. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
setTitle(title)
फ़ॉर्म का टाइटल सेट करता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
title | String | फ़ॉर्म का नया टाइटल. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
shortenFormUrl(url)
किसी फ़ॉर्म के लंबे यूआरएल को छोटे यूआरएल में बदलता है. अगर लंबा यूआरएल, Google Forms से जुड़ा नहीं है, तो अपवाद दिखाता है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
url | String | छोटा किया जाने वाला यूआरएल. |
वापसी का टिकट
String
— http://goo.gl/forms/1234
फ़ॉर्मैट में यूआरएल.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms
submitGrades(responses)
दिए गए FormResponses के लिए ग्रेड सबमिट करता है.
अगर आपके कोड में onFormSubmit
ट्रिगर शामिल है, तो submitGrades()
को कॉल करने पर onFormSubmit
शर्त ट्रिगर हो जाती है और अनलिमिटेड लूप बन जाता है. अनलिमिटेड लूप से बचने के लिए, कोड जोड़ें. इससे यह पता चलता है कि submitGrades()
को कॉल करने से पहले, ग्रेड पहले से मौजूद हैं या नहीं.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
responses | FormResponse[] | फ़ॉर्म के सभी जवाबों का कलेक्शन. |
वापसी का टिकट
Form
— चेन बनाने के लिए यह Form
.
अनुमति देना
इस तरीके का इस्तेमाल करने वाली स्क्रिप्ट को, इनमें से एक या एक से ज़्यादा स्कोप के लिए अनुमति की ज़रूरत होती है:
-
https://www.googleapis.com/auth/forms.currentonly
-
https://www.googleapis.com/auth/forms