Class CollapseControl

CollapseControl

לחצן לכיווץ ולהרחבה, שניתן להתאים אישית.

האפשרות הזו זמינה רק באפליקציות של Google Chat. לא זמין לתוספים ל-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 שמוצג ללחצן 'הצגת פחות פרטים'.
setExpandButton(button)CollapseControlמגדיר את Button שמוצג ללחצן 'הצגת מידע נוסף'.
setHorizontalAlign(horizontalAlignment)CollapseControlהגדרת HorizontalAlignment של CollapseControl.

מסמכים מפורטים

setCollapseButton(button)

מגדיר את Button שמוצג ללחצן 'הצגת פחות'. זה שינוי אופציונלי.
צריך להגדיר אותו יחד עם לחצן הקיפול.

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

פרמטרים

שםסוגתיאור
buttonButtonלחצן הכווץ להגדרה.

חזרה

CollapseControl – האובייקט הזה, לצורך קישור.


setExpandButton(button)

מגדיר את Button שמוצג ללחצן 'הצגת מידע נוסף'. זה שינוי אופציונלי.
צריך להגדיר אותם יחד באמצעות לחצן כיווץ.

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

פרמטרים

שםסוגתיאור
buttonButtonלחצן ההרחבה להגדרה.

חזרה

CollapseControl – האובייקט הזה, לצורך קישור.


setHorizontalAlign(horizontalAlignment)

מגדיר את ה-HorizontalAlignment של CollapseControl. זה שינוי אופציונלי. *

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

פרמטרים

שםסוגתיאור
horizontalAlignmentHorizontalAlignmentהיישור האופקי של הווידג'ט CollapseControl.

חזרה

CollapseControl – האובייקט הזה, לשרשור.