Class Suggestions
الاقتراحات
اقتراحات للإكمال التلقائي لإكمال تطبيق مصغّر TextInput
تتوفّر هذه الميزة لإضافات Google Workspace وتطبيقات Google Chat.
const textInput = CardService.newTextInput().setSuggestions(
CardService.newSuggestions()
.addSuggestion('First suggestion')
.addSuggestion('Second suggestion'),
);
مستندات تفصيلية
addSuggestion(suggestion)
أضِف اقتراحًا نصيًا.
المعلَمات
الاسم | النوع | الوصف |
suggestion | String | نص الاقتراح |
الإرجاع
Suggestions
: هذا العنصر، لإنشاء سلسلة.
addSuggestions(suggestions)
أضِف قائمة باقتراحات النصوص.
المعلَمات
الاسم | النوع | الوصف |
suggestions | Object[] | مصفوفة من اقتراحات السلاسل |
الإرجاع
Suggestions
: هذا العنصر، لإنشاء سلسلة.
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2024-12-03 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2024-12-03 (حسب التوقيت العالمي المتفَّق عليه)"],[[["Autocomplete suggestions enhance TextInput widgets in Google Workspace Add-ons and Google Chat apps by providing users with pre-filled options."],["Developers can easily add single or multiple text suggestions using the `addSuggestion()` and `addSuggestions()` methods respectively, within the Suggestions object."],["The `addSuggestion()` method takes a single string argument representing the suggestion text, while `addSuggestions()` accepts an array of strings for multiple suggestions."],["Both methods return the Suggestions object, allowing for method chaining to efficiently build a comprehensive list of suggestions."]]],[]]