Une colonne.
Disponible pour les applications Google Chat et les modules complémentaires Google Workspace.
const columnWidget = CardService.newTextParagraph(); const column = CardService.newColumn() .setHorizontalSizeStyle( CardService.HorizontalSizeStyle.FILL_AVAILABLE_SPACE) .setHorizontalAlignment(CardService.HorizontalAlignment.CENTER) .setVerticalAlignment(CardService.VerticalAlignment.CENTER) .addWidget(columnWidget);
Méthodes
Méthode | Type renvoyé | Brève description |
---|---|---|
add | Column | Ajoute un widget à la colonne. |
set | Column | Définit le Horizontal de l'Column . |
set | Column | Définit l'Horizontal de la colonne. |
set | Column | Définit le Vertical de l'Column . |
Documentation détaillée
add Widget(widget)
Ajoute un widget à la colonne.
Les widgets s'affichent dans l'ordre dans lequel ils sont ajoutés. Vous pouvez ajouter les widgets suivants à une colonne:
const column = CardService.newColumn().addWidget( CardService.newTextParagraph().setText('This is a text paragraph widget'), );
Paramètres
Nom | Type | Description |
---|---|---|
widget | Widget | Widget à ajouter à la colonne. |
Renvois
Column
: cet objet, pour le chaînage.
set Horizontal Alignment(horizontalAlignment)
Définit le Horizontal
de l'Column
. Facultatif.
const column = CardService.newColumn().setHorizontalAlignment( CardService.HorizontalAlignment.CENTER, );
Paramètres
Nom | Type | Description |
---|---|---|
horizontal | Horizontal | Alignement horizontal de la colonne. |
Renvois
Column
: cet objet, pour le chaînage.
set Horizontal Size Style(horizontalSizeStyle)
Définit l'Horizontal
de la colonne. Facultatif.
const column = CardService.newColumn().setHorizontalSizeStyle( CardService.HorizontalSizeStyle.FILL_AVAILABLE_SPACE, );
Paramètres
Nom | Type | Description |
---|---|---|
horizontal | Horizontal | Taille horizontale de la colonne. |
Renvois
Column
: cet objet, pour le chaînage.
set Vertical Alignment(verticalAlignment)
Définit le Vertical
de l'Column
. Facultatif.
const column = CardService.newColumn().setVerticalAlignment( CardService.VerticalAlignment.CENTER, );
Paramètres
Nom | Type | Description |
---|---|---|
vertical | Vertical | Alignement vertical de la colonne. |
Renvois
Column
: cet objet, pour le chaînage.