ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
ui.Checkbox
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একটি লেবেল সহ একটি চেকবক্স৷
ব্যবহার | রিটার্নস | ui.Checkbox( label , value , onChange , disabled , style ) | ui.চেকবক্স |
যুক্তি | টাইপ | বিস্তারিত | label | স্ট্রিং, ঐচ্ছিক | চেকবক্সের লেবেল। একটি খালি স্ট্রিং ডিফল্ট. |
value | বুলিয়ান, ঐচ্ছিক | চেকবক্স চেক করা আছে কিনা। একটি নাল মান নির্দেশ করে যে চেকবক্স একটি অনির্দিষ্ট অবস্থায় আছে। ডিফল্ট থেকে মিথ্যা. |
onChange | ফাংশন, ঐচ্ছিক | চেকবক্সের মান পরিবর্তন হলে ফায়ার করার জন্য একটি কলব্যাক। কলব্যাকটি একটি বুলিয়ান পাস করা হয় যা নির্দেশ করে যে চেকবক্সটি এখন চেক করা হয়েছে এবং চেকবক্স উইজেট। |
disabled | বুলিয়ান, ঐচ্ছিক | চেকবক্স নিষ্ক্রিয় কিনা। ডিফল্ট থেকে মিথ্যা. |
style | বস্তু, ঐচ্ছিক | এই উইজেটের জন্য সেট করা মান সহ অনুমোদিত CSS শৈলীর একটি বস্তু। শৈলী() ডকুমেন্টেশন দেখুন। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-29 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-29 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eThe \u003ccode\u003eui.Checkbox\u003c/code\u003e widget is used to create a checkbox with a label, allowing users to select or deselect an option.\u003c/p\u003e\n"],["\u003cp\u003eIt can be initialized with optional parameters for label, value, onChange callback, disabled state, and custom styles.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eonChange\u003c/code\u003e callback is triggered when the checkbox value changes, providing access to the new checked state and the checkbox widget itself.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003evalue\u003c/code\u003e can be set to \u003ccode\u003enull\u003c/code\u003e to represent an indeterminate state, while \u003ccode\u003edisabled\u003c/code\u003e and \u003ccode\u003estyle\u003c/code\u003e parameters offer control over the widget's interactivity and appearance.\u003c/p\u003e\n"]]],["The core content describes a `ui.Checkbox` widget, its usage, and its arguments. It can be created using `ui.Checkbox()` and allows for a `label`, a boolean `value` (checked/unchecked/indeterminate), an `onChange` callback function, a `disabled` state, and custom `style`. The `onChange` callback receives the new boolean state and the widget itself. Each parameter is optional and has default values.\n"],null,["# ui.Checkbox\n\n\u003cbr /\u003e\n\nA checkbox with a label.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|--------------------------------------------------------------------------------|-------------|\n| `ui.Checkbox(`*label* `, `*value* `, `*onChange* `, `*disabled* `, `*style*`)` | ui.Checkbox |\n\n| Argument | Type | Details |\n|------------|--------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `label` | String, optional | The checkbox's label. Defaults to an empty string. |\n| `value` | Boolean, optional | Whether the checkbox is checked. A null value indicates that the checkbox is in an indeterminate state. Defaults to false. |\n| `onChange` | Function, optional | A callback to fire when the value of the checkbox changes. The callback is passed a boolean indicating whether the checkbox is now checked and the checkbox widget. |\n| `disabled` | Boolean, optional | Whether the checkbox is disabled. Defaults to false. |\n| `style` | Object, optional | An object of allowed CSS styles with their values to be set for this widget. See style() documentation. |"]]