Enum DashStyle
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
대시스타일
선형 지오메트리를 렌더링할 수 있는 대시 종류입니다. 이러한 값은 ECMA-376 5판 1부인 'Office Open XML 파일 형식 - 기본 사항 및 마크업 언어 참조'의 20.1.10.48절에 설명된 'ST_PresetLineDashVal' 단순 유형을 기반으로 합니다.
열거형을 호출하려면 상위 클래스, 이름, 속성을 호출합니다. 예를 들면
SlidesApp.DashStyle.DOT
입니다.
속성
속성 | 유형 | 설명 |
UNSUPPORTED | Enum | 지원되지 않는 대시 스타일입니다. |
SOLID | Enum | 실선 ECMA-376 ST_PresetLineDashVal 값 'solid'에 해당합니다. 기본 대시 스타일입니다. |
DOT | Enum | 점선 ECMA-376 ST_PresetLineDashVal 값 'dot'에 해당합니다. |
DASH | Enum | 점선 ECMA-376 ST_PresetLineDashVal 값 'dash'에 해당합니다. |
DASH_DOT | Enum | 대시와 점이 번갈아 표시됩니다. ECMA-376 ST_PresetLineDashVal 값 'dashDot'에 해당합니다. |
LONG_DASH | Enum | 대시가 큰 선 ECMA-376 ST_PresetLineDashVal 값 'lgDash'에 해당합니다. |
LONG_DASH_DOT | Enum | 큰 대시와 점이 번갈아 표시됩니다. ECMA-376 ST_PresetLineDashVal 값 'lgDashDot'에 해당합니다. |
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-08-04(UTC)
[null,null,["최종 업데이트: 2025-08-04(UTC)"],[[["\u003cp\u003e\u003ccode\u003eDashStyle\u003c/code\u003e defines the different types of dashes used for rendering lines in presentations, based on the ECMA-376 standard.\u003c/p\u003e\n"],["\u003cp\u003eYou can access these dash styles using the format \u003ccode\u003eSlidesApp.DashStyle.PROPERTY\u003c/code\u003e, replacing \u003ccode\u003ePROPERTY\u003c/code\u003e with the desired style like \u003ccode\u003eDOT\u003c/code\u003e or \u003ccode\u003eDASH\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eAvailable dash styles include solid, dotted, dashed, dash-dot, long dash, and long dash-dot, along with a default \u003ccode\u003eSOLID\u003c/code\u003e and an \u003ccode\u003eUNSUPPORTED\u003c/code\u003e style.\u003c/p\u003e\n"],["\u003cp\u003eEach dash style corresponds to a specific ECMA-376 \u003ccode\u003eST_PresetLineDashVal\u003c/code\u003e value for interoperability with other applications.\u003c/p\u003e\n"]]],["`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"],null,["# Enum DashStyle\n\nDashStyle\n\nThe kinds of dashes with which linear geometry can be rendered. These values are based on the\n\"ST_PresetLineDashVal\" simple type described in section 20.1.10.48 of \"Office Open XML File\nFormats - Fundamentals and Markup Language Reference\", part 1 of [ECMA-376 5th\nedition](https://ecma-international.org/publications-and-standards/standards/ecma-376/).\n\nTo call an enum, you call its parent class, name, and property. For example, `\nSlidesApp.DashStyle.DOT`. \n\n### Properties\n\n| Property | Type | Description |\n|-----------------|--------|---------------------------------------------------------------------------------------------------------|\n| `UNSUPPORTED` | `Enum` | A dash style that is not supported. |\n| `SOLID` | `Enum` | Solid line. Corresponds to ECMA-376 ST_PresetLineDashVal value 'solid'. This is the default dash style. |\n| `DOT` | `Enum` | Dotted line. Corresponds to ECMA-376 ST_PresetLineDashVal value 'dot'. |\n| `DASH` | `Enum` | Dashed line. Corresponds to ECMA-376 ST_PresetLineDashVal value 'dash'. |\n| `DASH_DOT` | `Enum` | Alternating dashes and dots. Corresponds to ECMA-376 ST_PresetLineDashVal value 'dashDot'. |\n| `LONG_DASH` | `Enum` | Line with large dashes. Corresponds to ECMA-376 ST_PresetLineDashVal value 'lgDash'. |\n| `LONG_DASH_DOT` | `Enum` | Alternating large dashes and dots. Corresponds to ECMA-376 ST_PresetLineDashVal value 'lgDashDot'. |"]]