פקדים להתאמה אישית של צמצום והרחבה.
התכונה הזו זמינה רק באפליקציות של 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);
פרמטרים
שם | סוג | תיאור |
---|---|---|
button | Button | לחצן הכווץ להגדרה. |
חזרה
CollapseControl
– האובייקט הזה, לצורך קישור.
setExpandButton(button)
מגדיר את Button
שמוצג ללחצן 'הצגת מידע נוסף'. זה שינוי אופציונלי.
צריך להגדיר אותו יחד עם לחצן ההתכווצות.
const expandButton = CardService.newTextButton().setText('Expand'); 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
– האובייקט הזה, לצורך קישור.