संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
DashStyle
इस विकल्प की मदद से, यह तय किया जा सकता है कि लीनियर ज्यामिति को किस तरह के डैश के साथ रेंडर किया जा सकता है. ये वैल्यू, "Office Open XML File Formats - Fundamentals and Markup Language Reference" के सेक्शन 20.1.10.48 में बताए गए "ST_PresetLineDashVal" सिंपल टाइप पर आधारित हैं. यह ECMA-376 के पांचवें वर्शन का पहला हिस्सा है.
किसी enum को कॉल करने के लिए, उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल करें. उदाहरण के लिए,
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' से मेल खाती है.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 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'. |"]]