אובייקט DataValidationBuilder ל-Checkbox
.
// 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);
Methods
שיטה | סוג הערך המוחזר | תיאור קצר |
---|---|---|
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
הזה, לשרשור