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)
อย่างน้อยต้องมีตัวเลือกจำนวนนี้ให้เลือก
พารามิเตอร์
ชื่อ | ประเภท | คำอธิบาย |
---|---|---|
number | Integer |
รีเทิร์น
CheckboxValidationBuilder
— CheckboxValidationBuilder
นี้สำหรับการทำห่วงโซ่
requireSelectAtMost(number)
ต้องมีตัวเลือกให้เลือกมากถึงจำนวนนี้
พารามิเตอร์
ชื่อ | ประเภท | คำอธิบาย |
---|---|---|
number | Integer |
รีเทิร์น
CheckboxValidationBuilder
— CheckboxValidationBuilder
นี้สำหรับการทำห่วงโซ่
requireSelectExactly(number)
ต้องเลือกจำนวนมากเท่านี้
พารามิเตอร์
ชื่อ | ประเภท | คำอธิบาย |
---|---|---|
number | Integer |
รีเทิร์น
CheckboxValidationBuilder
— CheckboxValidationBuilder
นี้สำหรับการทำห่วงโซ่