Checkbox
के लिए DataValidationBuilder.
// Add a checkbox grid item to a form and restrict it to one response per // column. const form = FormApp.openById('123abc'); const checkboxGridItem = form.addCheckboxGridItem(); checkboxGridItem.setTitle('Where did you celebrate New Years?') .setRows(['New York', 'San Francisco', 'London']) .setColumns(['2014', '2015', '2016', '2017']); const checkboxGridValidation = FormApp.createcheckboxGridValidation() .setHelpText('Select one item per column.') .requireLimitOneResponsePerColumn() .build(); checkboxGridItem.setValidation(checkboxGridValidation);
तरीके
तरीका | रिटर्न टाइप | संक्षिप्त विवरण |
---|---|---|
require | Checkbox | ग्रिड आइटम के लिए, हर कॉलम में सिर्फ़ एक जवाब चुनने की ज़रूरत होती है. |
ज़्यादा जानकारी वाला दस्तावेज़
require Limit One Response Per Column()
ग्रिड आइटम के लिए, हर कॉलम में सिर्फ़ एक जवाब चुनने की ज़रूरत होती है.
वापसी का टिकट
Checkbox
— चेन करने के लिए, पुष्टि करने वाला यह बिल्डर