Class CheckboxValidationBuilder

CheckboxValidationBuilder

DataValidationBuilder של CheckboxValidation.

// 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)

חובה לבחור לפחות את מספר האפשרויות הזה.

פרמטרים

שםסוגתיאור
numberInteger

חזרה

CheckboxValidationBuilder – הCheckboxValidationBuilder הזה, לשרשור


requireSelectAtMost(number)

אי אפשר לבחור עד יותר אפשרויות בחירה.

פרמטרים

שםסוגתיאור
numberInteger

חזרה

CheckboxValidationBuilder – הCheckboxValidationBuilder הזה, לשרשור


requireSelectExactly(number)

הגדרת דרישה למספר האפשרויות הזה בדיוק.

פרמטרים

שםסוגתיאור
numberInteger

חזרה

CheckboxValidationBuilder – הCheckboxValidationBuilder הזה, לשרשור