Class Divider

Dấu chia

Một dải phân cách ngang. Để thêm một bộ chia vào thẻ tiện ích bổ sung, hãy sử dụng phương thức newDivider() trong CardService. Ví dụ: mẫu sau đây tạo một thẻ đơn giản gồm 2 đoạn văn được phân tách bằng một đường phân cách.

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

    let cardSection1Divider1 = CardService.newDivider();

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

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

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

   return card;
}