Enum TabType
ট্যাব টাইপ সমস্ত ট্যাব প্রকারের একটি গণনা।
একটি enum কল করার জন্য, আপনি তার পিতামাতার শ্রেণী, নাম এবং সম্পত্তি কল করুন। উদাহরণস্বরূপ, DocumentApp.TabType.TAB
।
একটি প্রদত্ত উপাদানের ধরন পরীক্ষা করতে TabType
গণনা ব্যবহার করুন, উদাহরণস্বরূপ:
var tab = DocumentApp.getActiveDocument().getActiveTab();
// Use getType() to determine the tab's type before casting.
if (tab.getType() == DocumentApp.TabType.DOCUMENT_TAB) {
// It's a document tab, write some text to it.
tab.asDocumentTab().setText('Hello World!');
} else {
// There are currently no types other than DOCUMENT_TAB.
}
বৈশিষ্ট্য
সম্পত্তি | টাইপ | বর্ণনা |
---|
DOCUMENT_TAB | Enum | DocumentTab সাথে সম্পর্কিত প্রকার। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2024-11-09 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2024-11-09 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["`TabType` is an enumeration used to identify different tab types within a Google Doc."],["Currently, `DOCUMENT_TAB` is the only available tab type, representing a document tab that can be interacted with using the `DocumentTab` class."],["You can determine the type of a tab using `getType()` and then perform actions based on its specific type, such as adding text to a `DOCUMENT_TAB`."]]],[]]