Enum DashStyle
DashStyle
ประเภทขีดกลางที่แสดงผลเรขาคณิตเชิงเส้นได้ ค่าเหล่านี้อิงตามประเภทพื้นฐาน "ST_PresetLineDashVal" ที่อธิบายไว้ในส่วน 20.1.10.48 ของ "รูปแบบไฟล์ Office Open XML - ข้อมูลเบื้องต้นและข้อมูลอ้างอิงภาษามาร์กอัป" ส่วนที่ 1 ของ ECMA-376 ฉบับที่ 4
หากต้องการเรียกใช้ enum ให้เรียกคลาสหลัก ชื่อ และพร็อพเพอร์ตี้ของ enum นั้น เช่น
SlidesApp.DashStyle.DOT
พร็อพเพอร์ตี้
พร็อพเพอร์ตี้ | ประเภท | คำอธิบาย |
UNSUPPORTED | Enum | รูปแบบขีดกลางที่ไม่รองรับ |
SOLID | Enum | เส้นทึบ สอดคล้องกับค่า ST_PresetLineDashVal "solid" ของ ECMA-376 นี่เป็นสไตล์ขีดกลางเริ่มต้น |
DOT | Enum | เส้นประ สอดคล้องกับค่า ST_PresetLineDashVal ของ ECMA-376 "dot" |
DASH | Enum | เส้นประ สอดคล้องกับค่า ST_PresetLineDashVal ของ ECMA-376 "dash" |
DASH_DOT | Enum | ขีดกลางและจุดสลับกัน สอดคล้องกับค่า ST_PresetLineDashVal ของ ECMA-376 "dashDot" |
LONG_DASH | Enum | เส้นที่มีขีดกลางขนาดใหญ่ สอดคล้องกับค่า ST_PresetLineDashVal ของ ECMA-376 "lgDash" |
LONG_DASH_DOT | Enum | สลับขีดกลางและจุดขนาดใหญ่ สอดคล้องกับค่า ECMA-376 ST_PresetLineDashVal
'lgDashDot' |
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2024-12-02 UTC
[null,null,["อัปเดตล่าสุด 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"]]