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