CheckboxValidation
के लिए DataValidationBuilder.
// Add a checkBox item to a form and require exactly two selections. var 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') ]); var checkBoxValidation = FormApp.createCheckboxValidation() .setHelpText(“Select two condiments.”) .requireSelectExactly(2) .build(); checkBoxItem.setValidation(checkBoxValidation);
तरीके
तरीका | रिटर्न टाइप | संक्षिप्त विवरण |
---|---|---|
requireSelectAtLeast(number) | CheckboxValidationBuilder | कम से कम इतने विकल्पों को चुनना ज़रूरी है. |
requireSelectAtMost(number) | CheckboxValidationBuilder | ज़्यादा से ज़्यादा इतने विकल्पों को चुनना ज़रूरी है. |
requireSelectExactly(number) | CheckboxValidationBuilder | इतने ही विकल्पों को चुनना ज़रूरी है. |
विस्तृत दस्तावेज़
requireSelectAtLeast(number)
कम से कम इतने विकल्पों को चुनना ज़रूरी है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
number | Integer |
वापसी का टिकट
CheckboxValidationBuilder
— यह CheckboxValidationBuilder
, चेन बनाने के लिए
requireSelectAtMost(number)
ज़्यादा से ज़्यादा इतने विकल्पों को चुनना ज़रूरी है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
number | Integer |
वापसी का टिकट
CheckboxValidationBuilder
— यह CheckboxValidationBuilder
, चेन बनाने के लिए
requireSelectExactly(number)
इतने ही विकल्पों को चुनना ज़रूरी है.
पैरामीटर
नाम | टाइप | ब्यौरा |
---|---|---|
number | Integer |
वापसी का टिकट
CheckboxValidationBuilder
— यह CheckboxValidationBuilder
, चेन बनाने के लिए