Class Divider
Bölücü
Yatay ayırıcı. Eklenti kartınıza bölücü eklemek için newDivider()
içindeki CardService
yöntemini kullanın. Örneğin, aşağıdaki örnekte bir bölücüye ayrılmış 2 paragraf içeren basit bir kart oluşturulmaktadır.
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;
}
Aksi belirtilmediği sürece bu sayfanın içeriği Creative Commons Atıf 4.0 Lisansı altında ve kod örnekleri Apache 2.0 Lisansı altında lisanslanmıştır. Ayrıntılı bilgi için Google Developers Site Politikaları'na göz atın. Java, Oracle ve/veya satış ortaklarının tescilli ticari markasıdır.
Son güncelleme tarihi: 2024-12-02 UTC.
[null,null,["Son güncelleme tarihi: 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."]]],[]]