عنصر تحكّم قابل للتخصيص لتصغير المحتوى أو توسيعه
لا تتوفّر هذه الميزة إلا لتطبيقات 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
: هذا العنصر، لإنشاء سلسلة.