संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
फ़ीडबैक का टाइप
इस एनम में, सुझाव, शिकायत या राय के लिए इस्तेमाल किए जा सकने वाले टाइप की जानकारी होती है. सुझाव/राय/शिकायत के टाइप को FormApp.FeedbackType से ऐक्सेस किया जा सकता है.
किसी एनम को कॉल करने के लिए, उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल किया जाता है. उदाहरण के लिए,
FormApp.FeedbackType.CORRECT.
// Open a form by ID and add a new list item.constform=FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz');constitem=form.addListItem();item.setTitle('Do you prefer cats or dogs?');// Set "Dogs" as the correct answer to this question.item.setChoices([item.createChoice('Dogs',true),item.createChoice('Cats',false),]);// Add feedback which will be shown for correct responses; ie "Dogs".item.setFeedbackForCorrect(FormApp.createFeedback().setDisplayText('Dogs rule, cats drool.').build(),);
प्रॉपर्टी
प्रॉपर्टी
टाइप
ब्यौरा
CORRECT
Enum
किसी सवाल के सही जवाब देने पर, जवाब देने वाले लोगों को अपने-आप दिखने वाला सुझाव, शिकायत या राय.
सही सुझाव या राय सिर्फ़ उस तरह के सवालों के लिए अटैच की जा सकती है जिनके लिए अपने-आप ग्रेड मिलने की सुविधा काम करती है. जैसे, रेडियो बटन,
चेकबॉक्स, चुनें
INCORRECT
Enum
गलत जवाब दिए जाने पर, जवाब देने वाले लोगों को अपने-आप दिखने वाला सुझाव, शिकायत या राय.
गलत सुझाव या राय सिर्फ़ उस सवाल के लिए अटैच की जा सकती है जिसे अपने-आप ग्रेड मिल सकता है. जैसे, रेडियो बटन, चेकबॉक्स, चुनें
GENERAL
Enum
जवाब देने वाले लोगों को, जवाब सबमिट करने पर अपने-आप दिखने वाला सुझाव, राय या शिकायत.
सामान्य सुझाव, राय या शिकायत सिर्फ़ उन सवालों के लिए अटैच की जा सकती है जिनके लिए अपने-आप ग्रेड देने की सुविधा काम नहीं करती. हालांकि, उन सवालों के लिए ग्रेड दिया जा सकता है. जैसे, ग्रिड के अलावा सभी तरह के सवाल
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2024-12-22 (UTC) को अपडेट किया गया."],[[["`FeedbackType` is an enum used to represent different types of feedback in Google Forms, accessible via `FormApp.FeedbackType`."],["It includes three properties: `CORRECT`, `INCORRECT`, and `GENERAL`, used to specify feedback for correct answers, incorrect answers, and general feedback respectively."],["Feedback is displayed to respondents automatically based on their answers and the type of feedback specified."],["Each feedback type is associated with specific question types it can be applied to for providing targeted feedback to users."]]],[]]