Class CollapseControl

CollapseControl

Chế độ kiểm soát thu gọn và mở rộng có thể tuỳ chỉnh.

Chỉ dành cho ứng dụng Google Chat. Không dùng được cho các tiện ích bổ sung của 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);

Phương thức

Phương thứcLoại dữ liệu trả vềMô tả ngắn
setCollapseButton(button)CollapseControlĐặt Button hiển thị cho nút "ẩn bớt".
setExpandButton(button)CollapseControlĐặt Button hiển thị cho nút "hiển thị thêm".
setHorizontalAlign(horizontalAlignment)CollapseControlĐặt HorizontalAlignment của CollapseControl.

Tài liệu chi tiết

setCollapseButton(button)

Đặt Button hiển thị cho nút "ẩn bớt". Không bắt buộc.
Phải được đặt cùng với nút thu gọn.

const collapseControl =
    CardService.newCollapseControl().setCollapseButton(collapseButton);

Thông số

TênLoạiMô tả
buttonButtonNút thu gọn để đặt.

Cầu thủ trả bóng

CollapseControl – Đối tượng này, để tạo chuỗi.


setExpandButton(button)

Đặt Button hiển thị cho nút "hiển thị thêm". Không bắt buộc.
Phải được đặt cùng với nút thu gọn.

const collapseControl =
    CardService.newCollapseControl().setExpandButton(expandButton);

Thông số

TênLoạiMô tả
buttonButtonNút mở rộng để đặt.

Cầu thủ trả bóng

CollapseControl – Đối tượng này, để tạo chuỗi.


setHorizontalAlign(horizontalAlignment)

Đặt HorizontalAlignment của CollapseControl. Không bắt buộc. *

const collapseControl = CardService.newCollapseControl().setHorizontalAlign(
    CardService.HorizontalAlignment.START,
);

Thông số

TênLoạiMô tả
horizontalAlignmentHorizontalAlignmentCách căn chỉnh theo chiều ngang của tiện ích CollapseControl.

Cầu thủ trả bóng

CollapseControl – Đối tượng này, để tạo chuỗi.