إشعار: يجب
إثبات أهلية جميع المشاريع غير التجارية المسجّلة لاستخدام Earth Engine قبل
15 أبريل 2025 من أجل الحفاظ على إمكانية الوصول إلى Earth Engine.
ui.Textbox
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
مربّع نص يتيح للمستخدم إدخال معلومات نصية.
الاستخدام | المرتجعات |
---|
ui.Textbox(placeholder, value, onChange, disabled, style) | ui.Textbox |
الوسيطة | النوع | التفاصيل |
---|
placeholder | سلسلة، اختياري | نص العنصر النائب الذي سيتم عرضه عندما يكون مربّع النص فارغًا. القيمة التلقائية هي "بدون". |
value | سلسلة، اختياري | قيمة مربّع النص القيمة التلقائية هي "بدون". |
onChange | الدالة، اختيارية | الدالة التي سيتم تنفيذها عند تغيير النص. يتم تمرير النص الحالي في مربّع النص وعنصر مربّع النص إلى دالة معاودة الاتصال. |
disabled | قيمة منطقية، اختيارية | تحديد ما إذا كان مربع النص غير مفعّل. القيمة التلقائية هي "خطأ". |
style | الكائن، اختياري | كائن يتضمّن أنماط CSS المسموح بها مع قيمها التي سيتم ضبطها لهذه الأداة. راجِع مستندات style(). |
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)"],[[["\u003cp\u003eThe \u003ccode\u003eui.Textbox\u003c/code\u003e widget creates an interactive textbox for user text input.\u003c/p\u003e\n"],["\u003cp\u003eIt can be customized using arguments like \u003ccode\u003eplaceholder\u003c/code\u003e, \u003ccode\u003evalue\u003c/code\u003e, \u003ccode\u003eonChange\u003c/code\u003e, \u003ccode\u003edisabled\u003c/code\u003e, and \u003ccode\u003estyle\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eonChange\u003c/code\u003e callback provides the current text and the textbox widget, enabling dynamic responses to user input.\u003c/p\u003e\n"],["\u003cp\u003eUsers can set an initial value and placeholder text, and optionally disable the textbox using the provided arguments.\u003c/p\u003e\n"]]],["The core functionality is a text input box (`ui.Textbox`). Users can set a `placeholder` text and the initial `value`. An `onChange` callback function is triggered whenever the text changes, receiving the new text and widget. Users can disable the textbox with the `disabled` parameter. Customizable `style` options are available using CSS styles, allowing for visual modification. All arguments are optional with default values, except for the callback function.\n"],null,["# ui.Textbox\n\n\u003cbr /\u003e\n\nA textbox that enables the user to input text information.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-------------------------------------------------------------------------------------|------------|\n| `ui.Textbox(`*placeholder* `, `*value* `, `*onChange* `, `*disabled* `, `*style*`)` | ui.Textbox |\n\n| Argument | Type | Details |\n|---------------|--------------------|------------------------------------------------------------------------------------------------------------------------------|\n| `placeholder` | String, optional | The placeholder text to display when the textbox is empty. Defaults to none. |\n| `value` | String, optional | The textbox's value. Defaults to none. |\n| `onChange` | Function, optional | The callback to fire when the text changes. The callback is passed the text currently in the textbox and the textbox widget. |\n| `disabled` | Boolean, optional | Whether the textbox 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. |"]]