Class CollapseControl

کنترل فروپاشی

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

فقط برای برنامه‌های گپ Google در دسترس است. برای افزونه‌های 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);

روش ها

روش نوع برگشت شرح مختصر
set Collapse Button(button) Collapse Control Button نمایش داده شده را برای دکمه "show less" تنظیم می کند.
set Expand Button(button) Collapse Control Button را که برای دکمه "نمایش بیشتر" نمایش داده می شود را تنظیم می کند.
set Horizontal Align(horizontalAlignment) Collapse Control Horizontal Alignment Collapse Control را تنظیم می کند.

مستندات دقیق

set Collapse Button(button)

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

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

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

پارامترها

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

بازگشت

Collapse Control - این شیء برای زنجیر کردن.


set Expand Button(button)

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

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

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

پارامترها

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

بازگشت

Collapse Control - این شیء برای زنجیر کردن.


set Horizontal Align(horizontalAlignment)

Horizontal Alignment Collapse Control را تنظیم می کند. اختیاری. *

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

پارامترها

نام تایپ کنید توضیحات
horizontal Alignment Horizontal Alignment تراز افقی ویجت CollapseControl.

بازگشت

Collapse Control - این شیء برای زنجیر کردن.