Class CollapseControl

CollapseControl

یک کنترل جمع و گسترش قابل تنظیم.

فقط برای برنامه‌های گپ Google در دسترس است. برای افزونه‌های Google Workspace در دسترس نیست.

const collapseButton =
    CardService.newTextButton()
        .setTextButtonStyle(CardService.TextButtonStyle.BORDERLESS)
        .setText('less less')
        .setMaterialIcon(CardService.newMaterialIcon().setName('bug_report'));

const expandButton =
    CardService.newImageButton()
        .setImageButtonStyle(CardService.ImageButtonStyle.FILLED)
        .setMaterialIcon(CardService.newMaterialIcon().setName('bug_report'));

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

روش ها

روش نوع برگشت شرح مختصر
setCollapseButton(button) CollapseControl Button نمایش داده شده را برای دکمه "show less" تنظیم می کند.
setExpandButton(button) CollapseControl Button را که برای دکمه "نمایش بیشتر" نمایش داده می شود را تنظیم می کند.
setHorizontalAlign(horizontalAlignment) CollapseControl HorizontalAlignment CollapseControl را تنظیم می کند.

مستندات دقیق

setCollapseButton(button)

Button نمایش داده شده را برای دکمه "show less" تنظیم می کند. اختیاری.
باید همراه با دکمه جمع کردن تنظیم شود.

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

پارامترها

نام تایپ کنید توضیحات
button Button دکمه جمع کردن برای تنظیم.

بازگشت

CollapseControl - این شی، برای زنجیر کردن.


setExpandButton(button)

Button را که برای دکمه "نمایش بیشتر" نمایش داده می شود را تنظیم می کند. اختیاری.
باید همراه با دکمه جمع کردن تنظیم شود.

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

پارامترها

نام تایپ کنید توضیحات
button Button دکمه گسترش برای تنظیم.

بازگشت

CollapseControl - این شی، برای زنجیر کردن.


setHorizontalAlign(horizontalAlignment)

HorizontalAlignment CollapseControl را تنظیم می کند. اختیاری. *

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

پارامترها

نام تایپ کنید توضیحات
horizontalAlignment HorizontalAlignment تراز افقی ویجت CollapseControl.

بازگشت

CollapseControl - این شی، برای زنجیر کردن.