Class Divider
Separator
Linia podziału poziomego. Aby dodać separator do karty dodatku, użyj metody newDivider()
w bloku CardService
. Na przykład poniższy przykład tworzy prostą kartę z 2 akapitami rozdzielonymi linią.
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;
}
O ile nie stwierdzono inaczej, treść tej strony jest objęta licencją Creative Commons – uznanie autorstwa 4.0, a fragmenty kodu są dostępne na licencji Apache 2.0. Szczegółowe informacje na ten temat zawierają zasady dotyczące witryny Google Developers. Java jest zastrzeżonym znakiem towarowym firmy Oracle i jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2024-12-02 UTC.
[null,null,["Ostatnia aktualizacja: 2024-12-02 UTC."],[[["Horizontal dividers are visual elements used to separate content within an add-on card for better readability."],["Use the `newDivider()` method within the `CardService` class to create a divider element."],["Dividers can be added to card sections along with other widgets like text paragraphs."]]],[]]