Class Divider
Pemisah
Pemisah horizontal. Untuk menambahkan pemisah ke kartu add-on, gunakan newDivider()
dalam CardService
. Misalnya, contoh berikut membuat kartu sederhana dengan 2
paragraf yang dipisahkan oleh sebuah pemisah.
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;
}
Kecuali dinyatakan lain, konten di halaman ini dilisensikan berdasarkan Lisensi Creative Commons Attribution 4.0, sedangkan contoh kode dilisensikan berdasarkan Lisensi Apache 2.0. Untuk mengetahui informasi selengkapnya, lihat Kebijakan Situs Google Developers. Java adalah merek dagang terdaftar dari Oracle dan/atau afiliasinya.
Terakhir diperbarui pada 2024-08-22 UTC.
[null,null,["Terakhir diperbarui pada 2024-08-22 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."]]],[]]