Class CollapseControl

CollapseControl

पसंद के मुताबिक छोटा और बड़ा किया जा सकने वाला कंट्रोल.

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

const collapseButton =
    CardService.newTextButton()
        .setTextButtonStyle(CardService.TextButtonStyle.BORDERLESS)
        .setText('Collapse');

const expandButton =
    CardService.newImageButton()
        .setImageButtonStyle(CardService.ImageButtonStyle.FILLED);

const collapseControl =
    CardService.newCollapseControl()
        .setHorizontalAlign(CardService.HorizontalAlignment.END)
        .setExpandButton(expandButton)
        .setCollapseButton(collapseButton);

तरीके

तरीकारिटर्न टाइपसंक्षिप्त विवरण
setCollapseButton(button)CollapseControl"कम दिखाएं" बटन के लिए दिखाया जाने वाला Button सेट करता है.
setExpandButton(button)CollapseControl"ज़्यादा दिखाएं" बटन के लिए दिखाया जाने वाला Button सेट करता है.
setHorizontalAlign(horizontalAlignment)CollapseControlCollapseControl का HorizontalAlignment सेट करता है.

ज़्यादा जानकारी वाला दस्तावेज़

setCollapseButton(button)

"कम दिखाएं" बटन के लिए दिखाया जाने वाला Button सेट करता है. ज़रूरी नहीं.
इसे 'छोटा करें' बटन के साथ सेट किया जाना चाहिए.

const collapseButton =
    CardService.newTextButton().setText('Collapse');

const collapseControl =
    CardService.newCollapseControl()
        .setCollapseButton(collapseButton);

पैरामीटर

नामटाइपब्यौरा
buttonButtonसेट करने के लिए, छोटा करें बटन.

वापसी का टिकट

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


setExpandButton(button)

"ज़्यादा दिखाएं" बटन के लिए दिखाया जाने वाला Button सेट करता है. ज़रूरी नहीं.
इसे 'छोटा करें' बटन के साथ सेट किया जाना चाहिए.

const expandButton =
    CardService.newTextButton().setText('Expand');

const collapseControl =
    CardService.newCollapseControl()
        .setExpandButton(expandButton);

पैरामीटर

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

वापसी का टिकट

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


setHorizontalAlign(horizontalAlignment)

CollapseControl का HorizontalAlignment सेट करता है. ज़रूरी नहीं. *

const collapseControl = CardService.newCollapseControl().setHorizontalAlign(
    CardService.HorizontalAlignment.START,
);

पैरामीटर

नामटाइपब्यौरा
horizontalAlignmentHorizontalAlignmentCollapseControl विजेट का हॉरिज़ॉन्टल अलाइनमेंट.

वापसी का टिकट

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