Die Arten von Strichen, mit denen lineare Geometrie gerendert werden kann. Diese Werte basieren auf dem einfachen Typ „ST_PresetLineDashVal“, der in Abschnitt 20.1.10.48 von „Office Open XML File Formats – Fundamentals and Markup Language Reference“, Teil 1 der 4. ECMA-376-Version, beschrieben ist.
Wenn Sie ein Enum aufrufen möchten, rufen Sie die übergeordnete Klasse, den Namen und die Eigenschaft auf. Beispiel:
SlidesApp.DashStyle.DOT.
Attribute
Attribut
Typ
Beschreibung
UNSUPPORTED
Enum
Ein nicht unterstützter Strichstil.
SOLID
Enum
Durchgezogene Linie Entspricht dem ECMA-376-Wert „solid“ für ST_PresetLineDashVal. Dies ist der Standard-Strichstil.
DOT
Enum
Gestrichelte Linie. Entspricht dem ECMA-376-Wert „ST_PresetLineDashVal“, also „Punkt“.
DASH
Enum
Gestrichelte Linie. Entspricht dem ECMA-376-Wert „ST_PresetLineDashVal“, also „dash“.
DASH_DOT
Enum
Abwechselnd Striche und Punkte. Entspricht dem ECMA-376-Wert „ST_PresetLineDashVal“, also „dashDot“.
LONG_DASH
Enum
Linie mit großen Strichen. Entspricht dem ECMA-376-Wert „ST_PresetLineDashVal“ „lgDash“.
LONG_DASH_DOT
Enum
Abwechselnd große Striche und Punkte. Entspricht dem ECMA-376-Wert „ST_PresetLineDashVal“ lgDashDot.
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Benötigte Informationen nicht gefunden","missingTheInformationINeed","thumb-down"],["Zu umständlich/zu viele Schritte","tooComplicatedTooManySteps","thumb-down"],["Nicht mehr aktuell","outOfDate","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Problem mit Beispielen/Code","samplesCodeIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 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"]]