Class ChipList

ChipList

เก็บชุดออบเจ็กต์ Chip ที่แสดงเป็นแถว โดยตัดไปบรรทัดถัดไปเพื่อให้เลื่อนในแนวนอนได้

ใช้ได้กับแอป Google Chat เท่านั้น ไม่พร้อมใช้งานสำหรับส่วนเสริมของ Google Workspace

const chip = CardService.newChip();
// Finish building the text chip...

const chipList = CardService.newChipList()
                     .setLayout(CardService.ChipListLayout.WRAPPED)
                     .addChip(chip);

เมธอด

วิธีการประเภทการแสดงผลรายละเอียดแบบย่อ
addChip(chip)ChipListเพิ่มชิป
setLayout(layout)ChipListตั้งค่าเลย์เอาต์รายการชิป

เอกสารโดยละเอียด

addChip(chip)

เพิ่มชิป

พารามิเตอร์

ชื่อประเภทคำอธิบาย
chipChipชิปที่จะเพิ่ม

รีเทิร์น

ChipList — ออบเจ็กต์นี้สําหรับการต่อเชื่อม


setLayout(layout)

ตั้งค่าเลย์เอาต์รายการชิป หากไม่ได้ตั้งค่าไว้ ระบบจะใช้เลย์เอาต์ ChipListLayout.WRAPPED เป็นค่าเริ่มต้น

const chip = CardService.newChip();
// Finish building the text chip...

const chipList =
    CardService.newChipList()
        .setLayout(CardService.ChipListLayout.HORIZONTAL_SCROLLABLE)
        .addChip(chip);

พารามิเตอร์

ชื่อประเภทคำอธิบาย
layoutChipListLayoutเลย์เอาต์รายการชิป

รีเทิร์น

ChipList — ออบเจ็กต์นี้สําหรับการต่อเชื่อม