Sử dụng bộ sưu tập để sắp xếp ngăn nắp các trang
Lưu và phân loại nội dung dựa trên lựa chọn ưu tiên của bạn.
ButtonSet
Một enum đại diện cho các nhóm nút hộp thoại đã xác định trước, được bản địa hoá, có thể được thêm vào alert hoặc prompt. Để xác định nút mà người dùng đã nhấp, hãy sử dụng Button.
Để gọi một enum, bạn gọi lớp mẹ, tên và thuộc tính của enum đó. Ví dụ:
Base.ButtonSet.OK.
// Display a dialog box with a message and "Yes" and "No" buttons.
const ui = DocumentApp.getUi();
const response = ui.alert(
'Are you sure you want to continue?',
ui.ButtonSet.YES_NO,
);
// Process the user's response.
if (response === ui.Button.YES) {
Logger.log('The user clicked "Yes."');
} else {
Logger.log('The user clicked "No" or the dialog\'s close button.');
}
Thuộc tính
Thuộc tính
Loại
Mô tả
OK
Enum
Một nút "OK" duy nhất, cho biết một thông báo thông tin chỉ có thể bị đóng.
OK_CANCEL
Enum
Nút "OK" và nút "Huỷ", cho phép người dùng tiếp tục hoặc dừng một thao tác.
YES_NO
Enum
Nút "Có" và nút "Không", cho phép người dùng trả lời câu hỏi có/không.
YES_NO_CANCEL
Enum
Nút "Có", nút "Không" và nút "Huỷ", cho phép người dùng trả lời câu hỏi có/không hoặc tạm dừng một thao tác.
[[["Dễ hiểu","easyToUnderstand","thumb-up"],["Giúp tôi giải quyết được vấn đề","solvedMyProblem","thumb-up"],["Khác","otherUp","thumb-up"]],[["Thiếu thông tin tôi cần","missingTheInformationINeed","thumb-down"],["Quá phức tạp/quá nhiều bước","tooComplicatedTooManySteps","thumb-down"],["Đã lỗi thời","outOfDate","thumb-down"],["Vấn đề về bản dịch","translationIssue","thumb-down"],["Vấn đề về mẫu/mã","samplesCodeIssue","thumb-down"],["Khác","otherDown","thumb-down"]],["Cập nhật lần gần đây nhất: 2024-12-02 UTC."],[[["`ButtonSet` is an enum used to create predefined, localized button sets for dialog boxes in Apps Script."],["It provides options like `OK`, `OK_CANCEL`, `YES_NO`, and `YES_NO_CANCEL` for different dialog scenarios."],["You can determine the user's button click by comparing the response to `ui.Button` values."],["These button sets are used with `alert()` and `prompt()` methods of the `Ui` class."]]],[]]