Để gọi một enum, bạn gọi lớp mẹ, tên và thuộc tính của enum đó. Ví dụ:
CardService.UpdateDraftBodyType.IN_PLACE_INSERT.
Thuộc tính
Thuộc tính
Loại
Mô tả
IN_PLACE_INSERT
Enum
Mặc định. Thao tác cập nhật sẽ chèn nội dung tại vị trí con trỏ hiện tại, thay thế mọi nội dung đã chọn.
INSERT_AT_START
Enum
Hành động cập nhật sẽ chèn nội dung vào đầu nội dung thư.
INSERT_AT_END
Enum
Hành động cập nhật sẽ chèn nội dung vào cuối nội dung thư. Nếu có chữ ký email, trong Gmail trên web, thao tác cập nhật sẽ chèn sau chữ ký của người dùng. Trong ứng dụng Gmail dành cho thiết bị di động, thao tác cập nhật sẽ chèn trước chữ ký của người dùng.
[[["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."],[[["`UpdateDraftBodyType` is an enum used within `UpdateDraftBodyAction` to specify how the draft body of a message is modified."],["It offers three options: `IN_PLACE_INSERT` (default, replaces selected content or inserts at cursor), `INSERT_AT_START` (inserts at the beginning), and `INSERT_AT_END` (inserts at the end, respecting email signatures)."],["To use these options, call them using the format: `CardService.UpdateDraftBodyType.[Property Name]`."]]],[]]