การควบคุมแบบยุบและขยายที่กำหนดเองได้
ใช้ได้กับแอป 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
— ออบเจ็กต์นี้สําหรับการต่อเชื่อม