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
- チェーン用の this Checkbox
require Select At Most(number)
選択が必須となる選択肢の最大数。
パラメータ
名前 | 型 | 説明 |
---|---|---|
number | Integer |
戻る
Checkbox
- チェーン用の this Checkbox
require Select Exactly(number)
選択する選択肢をこの数にする必要があります。
パラメータ
名前 | 型 | 説明 |
---|---|---|
number | Integer |
戻る
Checkbox
- チェーン用の this Checkbox