Enum DashStyle

  • 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

The kinds of dashes with which linear geometry can be rendered. These values are based on the "ST_PresetLineDashVal" simple type described in section 20.1.10.48 of "Office Open XML File Formats - Fundamentals and Markup Language Reference", part 1 of ECMA-376 5th edition.

To call an enum, you call its parent class, name, and property. For example, SlidesApp.DashStyle.DOT.

Properties

PropertyTypeDescription
UNSUPPORTEDEnumA dash style that is not supported.
SOLIDEnumSolid line. Corresponds to ECMA-376 ST_PresetLineDashVal value 'solid'. This is the default dash style.
DOTEnumDotted line. Corresponds to ECMA-376 ST_PresetLineDashVal value 'dot'.
DASHEnumDashed line. Corresponds to ECMA-376 ST_PresetLineDashVal value 'dash'.
DASH_DOTEnumAlternating dashes and dots. Corresponds to ECMA-376 ST_PresetLineDashVal value 'dashDot'.
LONG_DASHEnumLine with large dashes. Corresponds to ECMA-376 ST_PresetLineDashVal value 'lgDash'.
LONG_DASH_DOTEnumAlternating large dashes and dots. Corresponds to ECMA-376 ST_PresetLineDashVal value 'lgDashDot'.