Class TextFormatChip

TextFormatChip

A clickable chip in the text format.

Only available for Google Workspace add-ons that extend Google Workspace Studio.

Sample usage:

const chip = AddOnsResponseService.newChip()
    .setTextFormatIcon(AddOnsResponseService.newTextFormatIcon()
      .setIconUrl("https://www.google.com/icon.png"))
    .setLabel("test_label")
    .setUrl("https://www.google.com/chip.png");

}

Methods

MethodReturn typeBrief description
setLabel(label)TextFormatChipSets the text displayed in the chip.
setTextFormatIcon(icon)TextFormatChipSets the icon displayed in the chip.
setUrl(url)TextFormatChipSets the URL to navigate to when the chip is clicked.

Detailed documentation

setLabel(label)

Sets the text displayed in the chip.

Parameters

NameTypeDescription
labelStringThe text label of the chip.

Return

TextFormatChip — This chip object, for chaining.


setTextFormatIcon(icon)

Sets the icon displayed in the chip.

Parameters

NameTypeDescription
iconTextFormatIconThe TextFormatIcon to set in the chip.

Return

TextFormatChip — This chip object, for chaining.


setUrl(url)

Sets the URL to navigate to when the chip is clicked.

Parameters

NameTypeDescription
urlStringThe destination URL to the chip.

Return

TextFormatChip — This chip object, for chaining.