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)CollapseControlتُستخدَم لضبط HorizontalAlignment في CollapseControl.

مستندات تفصيلية

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)

تُستخدَم لضبط HorizontalAlignment في CollapseControl. اختيارية: *

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

المعلمات

الاسمالنوعالوصف
horizontalAlignmentHorizontalAlignmentالمحاذاة الأفقية لأداة CollapseControl

الإرجاع

CollapseControl: هذا العنصر، لإنشاء سلسلة.