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: 연결을 위한 객체입니다.