Enum GroupControlTogglePosition
গ্রুপ কন্ট্রোল টগল পজিশন একটি গণনা সম্ভাব্য অবস্থানের প্রতিনিধিত্ব করে যা একটি গ্রুপ নিয়ন্ত্রণ টগল থাকতে পারে।
একটি enum কল করার জন্য, আপনি তার পিতামাতার শ্রেণী, নাম এবং সম্পত্তি কল করুন। উদাহরণস্বরূপ, SpreadsheetApp.GroupControlTogglePosition.BEFORE
।
বৈশিষ্ট্য
সম্পত্তি | টাইপ | বর্ণনা |
---|
BEFORE | Enum | যে অবস্থানে নিয়ন্ত্রণ টগল গ্রুপের আগে (নিম্ন সূচকে)। |
AFTER | Enum | যে অবস্থানে নিয়ন্ত্রণ টগল গ্রুপের পরে থাকে (উচ্চ সূচকে)। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2024-12-02 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2024-12-02 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["`GroupControlTogglePosition` determines where the toggle control appears for grouped rows or columns in a spreadsheet."],["It offers two options: `BEFORE` to place the toggle before the group and `AFTER` to place it after."],["You can access these options using `SpreadsheetApp.GroupControlTogglePosition.BEFORE` or `SpreadsheetApp.GroupControlTogglePosition.AFTER` within your Apps Script code."]]],["`GroupControlTogglePosition` is an enumeration with two properties: `BEFORE` and `AFTER`. `BEFORE` signifies the control toggle is positioned before the group, corresponding to lower indices. `AFTER` indicates the control toggle is after the group, aligning with higher indices. To access these properties, use the format `SpreadsheetApp.GroupControlTogglePosition.PROPERTY_NAME`, replacing `PROPERTY_NAME` with either `BEFORE` or `AFTER`. This describes where the user will see the control toggle relative to the group.\n"]]