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