Class ButtonSet

ButtonSet

Bir satırda görüntülenen Button nesne grubunu barındırır.

Google Workspace eklentilerinde ve Google Chat uygulamalarında kullanılabilir.

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);

Yöntemler

YöntemDönüş türüKısa açıklama
addButton(button)ButtonSetDüğme ekler.

Ayrıntılı belgeler

addButton(button)

Düğme ekler.

Parametreler

AdTürAçıklama
buttonButtonEklenecek düğme.

Return

ButtonSet: Zincirleme için bu nesne.