Enum LineType
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
লাইনের ধরন লাইনের ধরন।
"অফিস ওপেন এক্সএমএল ফাইল ফরম্যাট - ফান্ডামেন্টালস এবং মার্কআপ ল্যাঙ্গুয়েজ রেফারেন্স", ECMA-376 5ম সংস্করণের পার্ট 1-এর 20.1.10.55 অনুচ্ছেদে "ST_ShapeType" সাধারণ প্রকারের মানগুলির একটি উপসেট থেকে উদ্ভূত।
একটি enum কল করার জন্য, আপনি তার পিতামাতার শ্রেণী, নাম এবং সম্পত্তি কল করুন। উদাহরণস্বরূপ, 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 'লাইন'-এর সাথে মিলে যায়। এই লাইন টাইপ একটি সংযোগকারী নয়. |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল 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. |"]]