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