Class ButtonSet

버튼설정

행에 표시되는 Button 객체 집합을 보유합니다.

Google Workspace 부가기능 및 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);

메서드

메서드반환 유형간략한 설명
addButton(button)ButtonSet버튼을 추가합니다.

자세한 문서

addButton(button)

버튼을 추가합니다.

매개변수

이름유형설명
buttonButton추가 버튼

리턴

ButtonSet: 연결을 위한 객체입니다.