संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
चिपसूची
इसमें Chip ऑब्जेक्ट का एक सेट होता है, जो एक पंक्ति में दिखाए जाते हैं. साथ ही, ये ऑब्जेक्ट अगली पंक्ति में रैप हो जाते हैं, ताकि इन्हें हॉरिज़ॉन्टल तौर पर स्क्रोल किया जा सके.
यह सुविधा, Google Chat ऐप्लिकेशन के लिए उपलब्ध है. Google Workspace के ऐड-ऑन के लिए, डेवलपर की झलक में.
constchip=CardService.newChip();// Finish building the text chip...constchipList=CardService.newChipList().setLayout(CardService.ChipListLayout.WRAPPED).addChip(chip);
चिप की सूची का लेआउट सेट करता है. अगर यह सेट नहीं है, तो डिफ़ॉल्ट रूप से ChipListLayout.WRAPPED लेआउट लागू हो जाता है.
constchip=CardService.newChip();// Finish building the text chip...constchipList=CardService.newChipList().setLayout(CardService.ChipListLayout.HORIZONTAL_SCROLLABLE).addChip(chip);
[[["समझने में आसान है","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"]],["आखिरी बार 2024-12-22 (UTC) को अपडेट किया गया."],[[["ChipList displays a set of Chip objects in a row, wrapping to the next line or horizontally scrolling."],["It's available for Google Chat apps and in developer preview for Google Workspace Add-ons."],["Developers can use `addChip()` to add chips and `setLayout()` to configure the layout of the ChipList."]]],[]]