Class Divider

Divider

가로 구분선 부가기능 카드에 구분자를 추가하려면 CardService 내에서 newDivider() 메서드를 사용하세요. 예를 들어 다음 샘플은 구분자로 구분된 두 개의 단락이 있는 간단한 카드를 빌드합니다.

function buildCard() {
  const cardSection1TextParagraph1 =
      CardService.newTextParagraph().setText('Hello world!');

  const cardSection1Divider1 = CardService.newDivider();

  const cardSection1TextParagraph2 =
      CardService.newTextParagraph().setText('Hello world!');

  const cardSection1 = CardService.newCardSection()
                           .addWidget(cardSection1TextParagraph1)
                           .addWidget(cardSection1Divider1)
                           .addWidget(cardSection1TextParagraph2);

  const card = CardService.newCardBuilder().addSection(cardSection1).build();

  return card;
}