Enum BorderStyle
বর্ডার স্টাইল Range.setBorder(top, left, bottom, right, vertical, horizontal, color, style)
ব্যবহার করে একটি পরিসরে সেট করা যেতে পারে এমন শৈলী।
একটি enum কল করার জন্য, আপনি তার পিতামাতার শ্রেণী, নাম এবং সম্পত্তি কল করুন। উদাহরণস্বরূপ, 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 সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
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"]]