Enum LineType
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
LineType
선 유형입니다.
ECMA-376 5판 1부의 'Office Open XML 파일 형식 - 기본 사항 및 마크업 언어 참조' 20.1.10.55절에 나오는 'ST_ShapeType' 단순 유형의 값 중 일부에서 파생됩니다.
열거형을 호출하려면 상위 클래스, 이름, 속성을 호출합니다. 예를 들면
SlidesApp.LineType.STRAIGHT_CONNECTOR_1
입니다.
속성
속성 | 유형 | 설명 |
UNSUPPORTED | Enum | 지원되지 않는 선 유형입니다. |
STRAIGHT_CONNECTOR_1 | Enum | 직선 커넥터 1개 양식 ECMA-376 ST_ShapeType 'straightConnector1'에 해당합니다. |
BENT_CONNECTOR_2 | Enum | 구부러진 커넥터 2 양식 ECMA-376 ST_ShapeType 'bentConnector2'에 해당합니다. |
BENT_CONNECTOR_3 | Enum | 구부러진 커넥터 3 양식 ECMA-376 ST_ShapeType 'bentConnector3'에 해당합니다. |
BENT_CONNECTOR_4 | Enum | 구부러진 커넥터 4 양식 ECMA-376 ST_ShapeType 'bentConnector4'에 해당합니다. |
BENT_CONNECTOR_5 | Enum | 구부러진 커넥터 5 양식 ECMA-376 ST_ShapeType 'bentConnector5'에 해당합니다. |
CURVED_CONNECTOR_2 | Enum | 곡선 커넥터 2 양식 ECMA-376 ST_ShapeType 'curvedConnector2'에 해당합니다. |
CURVED_CONNECTOR_3 | Enum | 곡선 커넥터 3 양식 ECMA-376 ST_ShapeType 'curvedConnector3'에 해당합니다. |
CURVED_CONNECTOR_4 | Enum | 곡선 커넥터 4 양식 ECMA-376 ST_ShapeType 'curvedConnector4'에 해당합니다. |
CURVED_CONNECTOR_5 | Enum | 곡선 커넥터 5 형식 ECMA-376 ST_ShapeType 'curvedConnector5'에 해당합니다. |
STRAIGHT_LINE | Enum | 직선 ECMA-376 ST_ShapeType 'line'에 해당합니다. 이 선 유형은 커넥터가 아닙니다. |
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 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\u003eLineType\u003c/code\u003e defines the type of line used in Google Slides, derived from the ECMA-376 standard for Office Open XML file formats.\u003c/p\u003e\n"],["\u003cp\u003eYou can use various line types, including straight, bent, and curved connectors, as well as a straight line (non-connector).\u003c/p\u003e\n"],["\u003cp\u003eTo specify a line type within your code, utilize the syntax \u003ccode\u003eSlidesApp.LineType.[property]\u003c/code\u003e, such as \u003ccode\u003eSlidesApp.LineType.STRAIGHT_CONNECTOR_1\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eEach \u003ccode\u003eLineType\u003c/code\u003e property corresponds to a specific shape type as defined in the ECMA-376 standard.\u003c/p\u003e\n"]]],["Line types, derived from ECMA-376's \"ST_ShapeType,\" define various line forms. These include `UNSUPPORTED`, `STRAIGHT_CONNECTOR_1`, and several `BENT_CONNECTOR` and `CURVED_CONNECTOR` types (2-5). `STRAIGHT_LINE`, is also included. Each type corresponds to a specific ECMA-376 value. To use a specific enum value, reference it through `SlidesApp.LineType`, for example, `SlidesApp.LineType.STRAIGHT_CONNECTOR_1`.\n"],null,["# Enum LineType\n\nLineType\n\nThe line types.\n\nDerived from a subset of the values of the \"ST_ShapeType\" simple type in section 20.1.10.55 of\n\"Office Open XML File Formats - 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.LineType.STRAIGHT_CONNECTOR_1`. \n\n### Properties\n\n| Property | Type | Description |\n|------------------------|--------|------------------------------------------------------------------------------------------------|\n| `UNSUPPORTED` | `Enum` | A line type that is not supported. |\n| `STRAIGHT_CONNECTOR_1` | `Enum` | Straight connector 1 form. Corresponds to ECMA-376 ST_ShapeType 'straightConnector1'. |\n| `BENT_CONNECTOR_2` | `Enum` | Bent connector 2 form. Corresponds to ECMA-376 ST_ShapeType 'bentConnector2'. |\n| `BENT_CONNECTOR_3` | `Enum` | Bent connector 3 form. Corresponds to ECMA-376 ST_ShapeType 'bentConnector3'. |\n| `BENT_CONNECTOR_4` | `Enum` | Bent connector 4 form. Corresponds to ECMA-376 ST_ShapeType 'bentConnector4'. |\n| `BENT_CONNECTOR_5` | `Enum` | Bent connector 5 form. Corresponds to ECMA-376 ST_ShapeType 'bentConnector5'. |\n| `CURVED_CONNECTOR_2` | `Enum` | Curved connector 2 form. Corresponds to ECMA-376 ST_ShapeType 'curvedConnector2'. |\n| `CURVED_CONNECTOR_3` | `Enum` | Curved connector 3 form. Corresponds to ECMA-376 ST_ShapeType 'curvedConnector3'. |\n| `CURVED_CONNECTOR_4` | `Enum` | Curved connector 4 form. Corresponds to ECMA-376 ST_ShapeType 'curvedConnector4'. |\n| `CURVED_CONNECTOR_5` | `Enum` | Curved connector 5 form. Corresponds to ECMA-376 ST_ShapeType 'curvedConnector5'. |\n| `STRAIGHT_LINE` | `Enum` | Straight line. Corresponds to ECMA-376 ST_ShapeType 'line'. This line type is not a connector. |"]]