عنصر تحكّم قابل للتخصيص لتصغير المحتوى أو توسيعه
لا تتوفّر هذه الميزة إلا لتطبيقات 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);
الطُرق
الطريقة | نوع القيمة التي يتم عرضها | وصف قصير |
---|---|---|
set | Collapse | لضبط Button الذي يتم عرضه للزر "إظهار محتوى أقل". |
set | Collapse | لضبط الرمز Button الذي يظهر على زر "عرض المزيد" |
set | Collapse | تُستخدَم لضبط Horizontal في Collapse . |
مستندات تفصيلية
set Collapse Button(button)
لضبط Button
الذي يتم عرضه للزر "إظهار محتوى أقل". اختيارية:
يجب ضبطه مع زر التصغير.
const collapseButton = CardService.newTextButton().setText('Collapse'); const collapseControl = CardService.newCollapseControl() .setCollapseButton(collapseButton);
المعلَمات
الاسم | النوع | الوصف |
---|---|---|
button | Button | زر التصغير الذي سيتم ضبطه |
الإرجاع
Collapse
: هذا العنصر، لإنشاء سلسلة.
set Expand Button(button)
لضبط الرمز Button
الذي يظهر على زر "عرض المزيد" اختيارية:
يجب ضبطه مع زر التصغير.
const expandButton = CardService.newTextButton().setText('Expand'); const collapseControl = CardService.newCollapseControl() .setExpandButton(expandButton);
المعلَمات
الاسم | النوع | الوصف |
---|---|---|
button | Button | زر التوسيع لضبط |
الإرجاع
Collapse
: هذا العنصر، لإنشاء سلسلة.
set Horizontal Align(horizontalAlignment)
تُستخدَم لضبط Horizontal
في Collapse
. اختيارية: *
const collapseControl = CardService.newCollapseControl().setHorizontalAlign( CardService.HorizontalAlignment.START, );
المعلَمات
الاسم | النوع | الوصف |
---|---|---|
horizontal | Horizontal | المحاذاة الأفقية لأداة CollapseControl |
الإرجاع
Collapse
: هذا العنصر، لإنشاء سلسلة.