Checkbox
için bir 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);
Yöntemler
Yöntem | Dönüş türü | Kısa açıklama |
---|---|---|
require | Checkbox | En az bu sayıda seçeneğin işaretlenmesini zorunlu kılın. |
require | Checkbox | En fazla bu sayıda seçeneğin seçilmesini zorunlu kılar. |
require | Checkbox | Tam olarak bu sayıda seçeneğin seçilmesini gerektirir. |
Ayrıntılı dokümanlar
require Select At Least(number)
En az bu sayıda seçeneğin işaretlenmesini zorunlu kılın.
Parametreler
Ad | Tür | Açıklama |
---|---|---|
number | Integer |
Return
Checkbox
: Zincirleme için bu Checkbox
require Select At Most(number)
En fazla bu sayıda seçeneğin seçilmesini zorunlu kılar.
Parametreler
Ad | Tür | Açıklama |
---|---|---|
number | Integer |
Return
Checkbox
: Zincirleme için bu Checkbox
require Select Exactly(number)
Tam olarak bu sayıda seçeneğin seçilmesini zorunlu kılar.
Parametreler
Ad | Tür | Açıklama |
---|---|---|
number | Integer |
Return
Checkbox
: Zincirleme için bu Checkbox