Class Divider

  • A divider creates a horizontal line in an add-on card.

  • Use the newDivider() method from CardService to add a divider.

  • The provided code sample demonstrates how to build a card with paragraphs separated by a divider.

Divider

A horizontal divider. To add a divider to your add-on card, use the newDivider() method within CardService . For example, the following sample builds a simple card with 2 paragraphs separated by a divider.

functionbuildCard(){
constcardSection1TextParagraph1=
CardService.newTextParagraph().setText('Hello world!');
constcardSection1Divider1=CardService.newDivider();
constcardSection1TextParagraph2=
CardService.newTextParagraph().setText('Hello world!');
constcardSection1=CardService.newCardSection()
.addWidget(cardSection1TextParagraph1)
.addWidget(cardSection1Divider1)
.addWidget(cardSection1TextParagraph2);
constcard=CardService.newCardBuilder().addSection(cardSection1).build();
returncard;
}

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2024年12月02日 UTC.