Class ButtonSet

ButtonSet

इसमें Button ऑब्जेक्ट का ऐसा सेट होता है जो पंक्ति में दिखता है.

यह सुविधा, Google Workspace ऐड-ऑन और Google Chat ऐप्लिकेशन के लिए उपलब्ध है.

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

तरीके

तरीकारिटर्न टाइपसंक्षिप्त विवरण
addButton(button)ButtonSetबटन जोड़ता है.

विस्तृत दस्तावेज़

addButton(button)

बटन जोड़ता है.

पैरामीटर

नामटाइपब्यौरा
buttonButtonजोड़ने के लिए बटन.

वापसी का टिकट

ButtonSet — चेन बनाने के लिए यह ऑब्जेक्ट.