Class Divider

חיץ

קו מפריד אופקי. כדי להוסיף מפריד לכרטיס התוסף, משתמשים ב-method‏ newDivider() בתוך CardService. לדוגמה, בדוגמה הבאה נוצר כרטיס פשוט עם 2 פיסקאות שמפריד ביניהן קו.

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;
}