গবেষণা সমীক্ষা: ব্লকলি
স্টার্ট সার্ভে নিয়ে আপনার অভিজ্ঞতা সম্পর্কে আমাদের বলুন
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
ব্লকলি > টুলটিপ > টিপইনফো
একটি টুলটিপ সংজ্ঞায়িত করতে পারে এমন একটি প্রকার। হয় একটি স্ট্রিং, একটি টুলটিপ বৈশিষ্ট্য ধারণকারী একটি বস্তু, বা একটি ফাংশন যা হয় একটি স্ট্রিং প্রদান করে, অথবা অন্য একটি ইচ্ছাকৃতভাবে নেস্টেড ফাংশন যা শেষ পর্যন্ত একটি স্ট্রিংকে আনওয়াইন্ড করে।
স্বাক্ষর:
export type TipInfo = string | {
tooltip: any;
} | (() => TipInfo | string);
তথ্যসূত্র: TipInfo
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-25 UTC-তে শেষবার আপডেট করা হয়েছে।
[[["সহজে বোঝা যায়","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-07-25 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["`TipInfo` defines the content and behavior of Blockly tooltips."],["It can be a simple string, an object with a `tooltip` property, or a function returning tooltip content."],["Functions used for tooltips can be nested and eventually resolve to a string displayed as the tooltip."]]],["The `Tooltip.TipInfo` type defines the structure of a tooltip. It can be a simple string, an object with a `tooltip` property, or a function. This function can return either a string, another `TipInfo` type, or a nested function that ultimately resolves to a string. In essence, it allows for tooltips to be defined statically, dynamically, or through multiple function layers.\n"]]