Checkbox
के लिए DataValidationBuilder.
// Add a checkBox item to a form and require exactly two selections. const form = FormApp.create('My Form'); const checkBoxItem = form.addCheckboxItem(); checkBoxItem.setTitle('What two condiments would you like on your hot dog?'); checkBoxItem.setChoices([ checkBoxItem.createChoice('Ketchup'), checkBoxItem.createChoice('Mustard'), checkBoxItem.createChoice('Relish'), ]); const checkBoxValidation = FormApp.createCheckboxValidation() .setHelpText('Select two condiments.') .requireSelectExactly(2) .build(); checkBoxItem.setValidation(checkBoxValidation);
तरीके
तरीका | रिटर्न टाइप | संक्षिप्त विवरण |
---|---|---|
require | Checkbox | कम से कम इतने विकल्प चुनने होंगे. |
require | Checkbox | ज़्यादा से ज़्यादा इतने विकल्प चुने जा सकते हैं. |
require | Checkbox | आपको यह तय करना होगा कि कितने विकल्प चुने जाने चाहिए. |
ज़्यादा जानकारी वाला दस्तावेज़
require Select At Least(number)
कम से कम इतने विकल्प चुनने होंगे.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
number | Integer |
वापसी का टिकट
Checkbox
— चेन बनाने के लिए यह Checkbox
require Select At Most(number)
ज़्यादा से ज़्यादा इतने विकल्प चुने जा सकते हैं.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
number | Integer |
वापसी का टिकट
Checkbox
— चेन बनाने के लिए यह Checkbox
require Select Exactly(number)
आपको यह तय करना होगा कि कितने विकल्प चुने जाने चाहिए.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
number | Integer |
वापसी का टिकट
Checkbox
— चेन बनाने के लिए यह Checkbox