Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
ChipList
Contiene un insieme di oggetti Chip visualizzati in una riga, con a capo nella riga successiva per essere scorrevoli orizzontalmente.
Disponibile solo per le app Google Chat. Non disponibile per i componenti aggiuntivi di Google Workspace.
constchip=CardService.newChip();// Finish building the text chip...constchipList=CardService.newChipList().setLayout(CardService.ChipListLayout.WRAPPED).addChip(chip);
Imposta il layout dell'elenco di chip. Se non viene impostato, il valore predefinito è il layout ChipListLayout.WRAPPED.
constchip=CardService.newChip();// Finish building the text chip...constchipList=CardService.newChipList().setLayout(CardService.ChipListLayout.HORIZONTAL_SCROLLABLE).addChip(chip);
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Mancano le informazioni di cui ho bisogno","missingTheInformationINeed","thumb-down"],["Troppo complicato/troppi passaggi","tooComplicatedTooManySteps","thumb-down"],["Obsoleti","outOfDate","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Problema relativo a esempi/codice","samplesCodeIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 2024-12-04 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."]]],[]]