Enum BorderStyle
बॉर्डरस्टाइल
ऐसे स्टाइल जिन्हें Range.setBorder(top, left, bottom, right, vertical, horizontal, color, style)
का इस्तेमाल करके, रेंज पर सेट किया जा सकता है.
किसी एनम को कॉल करने के लिए, उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल किया जाता है. उदाहरण के लिए,
SpreadsheetApp.BorderStyle.DOTTED
.
प्रॉपर्टी
प्रॉपर्टी | टाइप | ब्यौरा |
DOTTED | Enum | बिंदुओं वाली लाइन के बॉर्डर. |
DASHED | Enum | डैश वाली लाइन के बॉर्डर. |
SOLID | Enum | पतली सॉलिड लाइन वाले बॉर्डर. |
SOLID_MEDIUM | Enum | मीडियम सॉलिड लाइन बॉर्डर. |
SOLID_THICK | Enum | मोटी सॉलिड लाइन वाले बॉर्डर. |
DOUBLE | Enum | दो सॉलिड लाइन बॉर्डर. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2024-12-03 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2024-12-03 (UTC) को अपडेट किया गया."],[[["`BorderStyle` in Google Apps Script is used to define the style of borders applied to a range of cells within a spreadsheet."],["You can apply borders to the top, bottom, left, right, vertical, and horizontal edges of a range."],["Border styles include dotted, dashed, solid (in varying thicknesses), and double lines."],["To set a border style, you need to call `Range.setBorder()` with arguments specifying the desired style and colors."],["`BorderStyle` is an enum within the `SpreadsheetApp` class and its properties (like `DOTTED` or `SOLID`) are accessed as `SpreadsheetApp.BorderStyle.DOTTED`."]]],["Border styles can be applied to a range using `Range.setBorder()`, specifying top, left, bottom, right, vertical, and horizontal borders, along with color and style. The available border styles, accessed via `SpreadsheetApp.BorderStyle`, include `DOTTED`, `DASHED`, `SOLID`, `SOLID_MEDIUM`, `SOLID_THICK`, and `DOUBLE`. Each style corresponds to a different line appearance, ranging from dotted to thick solid lines, as well as double lines.\n"]]