Class ButtonSet
ButtonSet
Enthält eine Reihe von Button
-Objekten, die in einer Zeile angezeigt werden.
Verfügbar für Google Workspace-Add-ons und Google Chat-Apps.
var textButton = CardService.newTextButton();
// Finish building the text button...
var imageButton = CardService.newImageButton();
// Finish building the image button...
var buttonSet = CardService.newButtonSet()
.addButton(textButton)
.addButton(imageButton);
Detaillierte Dokumentation
Sofern nicht anders angegeben, sind die Inhalte dieser Seite unter der Creative Commons Attribution 4.0 License und Codebeispiele unter der Apache 2.0 License lizenziert. Weitere Informationen finden Sie in den Websiterichtlinien von Google Developers. Java ist eine eingetragene Marke von Oracle und/oder seinen Partnern.
Zuletzt aktualisiert: 2024-08-21 (UTC).
[null,null,["Zuletzt aktualisiert: 2024-08-21 (UTC)."],[[["`ButtonSet` objects organize and display a row of `Button` objects within Google Workspace Add-ons and Google Chat apps."],["You can add buttons, which can be either text-based or image-based, to a `ButtonSet` using the `addButton()` method."],["The `addButton()` method allows for building the layout by adding `Button` objects and facilitating chained operations for efficient design."]]],[]]