Google Apps Script API
    Preparing search index...

    Holds a set of Button objects that are displayed in a row.

    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);
    
    interface ButtonSet {
        addButton(
            button: GoogleAppsScript.Card_Service.Button,
        ): GoogleAppsScript.Card_Service.ButtonSet;
    }
    Index

    Methods

    Methods