Các loại dấu gạch ngang có thể kết xuất hình học tuyến tính. Các giá trị này dựa trên loại đơn giản "ST_PresetLineDashVal" được mô tả trong phần 20.1.10.48 của "Office Open XML File Formats – Fundamentals and Markup Language Reference" (Định dạng tệp Office Open XML – Kiến thức cơ bản và tài liệu tham khảo về ngôn ngữ đánh dấu), phần 1 của ECMA-376 phiên bản thứ 4.
Để gọi một enum, bạn gọi lớp mẹ, tên và thuộc tính của enum đó. Ví dụ:
SlidesApp.DashStyle.DOT.
Thuộc tính
Thuộc tính
Loại
Mô tả
UNSUPPORTED
Enum
Kiểu dấu gạch ngang không được hỗ trợ.
SOLID
Enum
Đường kẻ liền. Tương ứng với giá trị ECMA-376 ST_PresetLineDashVal "solid" (đặc). Đây là kiểu dấu gạch ngang mặc định.
DOT
Enum
Đường nét đứt. Tương ứng với giá trị ECMA-376 ST_PresetLineDashVal "dot".
DASH
Enum
Đường gạch ngang. Tương ứng với giá trị ECMA-376 ST_PresetLineDashVal "dash".
DASH_DOT
Enum
Dấu gạch ngang và dấu chấm xen kẽ. Tương ứng với giá trị ECMA-376 ST_PresetLineDashVal "dashDot".
LONG_DASH
Enum
Đường kẻ có dấu gạch ngang lớn. Tương ứng với giá trị ECMA-376 ST_PresetLineDashVal "lgDash".
LONG_DASH_DOT
Enum
Xen kẽ dấu gạch ngang lớn và dấu chấm. Tương ứng với giá trị ECMA-376 ST_PresetLineDashVal "lgDashDot".
[[["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."],[[["`DashStyle` defines the different types of dashes used for rendering lines in presentations, based on the ECMA-376 standard."],["You can access these dash styles using the format `SlidesApp.DashStyle.PROPERTY`, replacing `PROPERTY` with the desired style like `DOT` or `DASH`."],["Available dash styles include solid, dotted, dashed, dash-dot, long dash, and long dash-dot, along with a default `SOLID` and an `UNSUPPORTED` style."],["Each dash style corresponds to a specific ECMA-376 `ST_PresetLineDashVal` value for interoperability with other applications."]]],["`DashStyle` defines the types of dashes for rendering linear geometry, based on the ECMA-376 standard. It provides properties to represent different line styles, including `UNSUPPORTED`, `SOLID` (default), `DOT`, `DASH`, `DASH_DOT`, `LONG_DASH`, and `LONG_DASH_DOT`. Each property corresponds to a specific `ST_PresetLineDashVal` value. To use an enum, refer to its parent class, name, and property (e.g., `SlidesApp.DashStyle.DOT`).\n"]]