Tetap teratur dengan koleksi
Simpan dan kategorikan konten berdasarkan preferensi Anda.
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;
}
[[["Mudah dipahami","easyToUnderstand","thumb-up"],["Memecahkan masalah saya","solvedMyProblem","thumb-up"],["Lainnya","otherUp","thumb-up"]],[["Informasi yang saya butuhkan tidak ada","missingTheInformationINeed","thumb-down"],["Terlalu rumit/langkahnya terlalu banyak","tooComplicatedTooManySteps","thumb-down"],["Sudah usang","outOfDate","thumb-down"],["Masalah terjemahan","translationIssue","thumb-down"],["Masalah kode / contoh","samplesCodeIssue","thumb-down"],["Lainnya","otherDown","thumb-down"]],["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."]]],[]]