Class ParagraphTextValidation
ParagraphTextValidation
Xác thực dữ liệu cho ParagraphTextItem
.
// Add a paragraph text item to a form and require the answer to be at least 100 characters.
var paragraphTextItem = form.addParagraphTextItem().setTitle('Describe yourself:');
var paragraphtextValidation = FormApp.createParagraphTextValidation()
.setHelpText(“Answer must be more than 100 characters.”)
.requireTextLengthGreaterThanOrEqualTo(100).build();
paragraphTextItem.setValidation(paragraphtextValidation);
Trừ phi có lưu ý khác, nội dung của trang này được cấp phép theo Giấy phép ghi nhận tác giả 4.0 của Creative Commons và các mẫu mã lập trình được cấp phép theo Giấy phép Apache 2.0. Để biết thông tin chi tiết, vui lòng tham khảo Chính sách trang web của Google Developers. Java là nhãn hiệu đã đăng ký của Oracle và/hoặc các đơn vị liên kết với Oracle.
Cập nhật lần gần đây nhất: 2024-08-21 UTC.
[null,null,["Cập nhật lần gần đây nhất: 2024-08-21 UTC."],[[["ParagraphTextValidation is a tool in Google Forms to set validation rules for paragraph text items."],["It allows setting requirements like minimum character length with help text to guide users."],["Developers can use `ParagraphTextValidation` through Apps Script to enforce these rules within their forms."]]],[]]