DataValidationBuilder สําหรับ Checkbox
// 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
นี้สําหรับการเชน