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);

Methods

שיטהסוג הערך המוחזרתיאור קצר
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 – האובייקט הזה, לצורך קישור.