Class ButtonSet

BoutonDéfinir

Contient un ensemble d'objets Button affichés sur une ligne.

Disponible pour les modules complémentaires Google Workspace et les applications Google Chat.

const textButton = CardService.newTextButton();
// Finish building the text button...

const imageButton = CardService.newImageButton();
// Finish building the image button...

const buttonSet =
    CardService.newButtonSet().addButton(textButton).addButton(imageButton);

Méthodes

MéthodeType renvoyéBrève description
addButton(button)ButtonSetAjoute un bouton.

Documentation détaillée

addButton(button)

Ajoute un bouton.

Paramètres

NomTypeDescription
buttonButtonBouton d'ajout.

Renvois

ButtonSet : cet objet, pour le chaînage.