Enum TextButtonStyle
TextButtonStyle
An enum that specifies the style for TextButton
.
OUTLINED
is the default; it renders a simple text button with clear background.
FILLED
buttons have a background color you can set with TextButton.setBackgroundColor(backgroundColor)
.
To call an enum, you call its parent class, name, and property. For example,
CardService.TextButtonStyle.OUTLINED
.
Properties
Property | Type | Description |
OUTLINED | Enum | Normal text button with clear background. Default. |
TEXT | Enum | DO NOT USE. Deprecated version of OUTLINED. Do not remove the field until it is confirmed not
being used by any apps. |
FILLED | Enum | Text button with colored background. |
FILLED_TONAL | Enum | Normal text button with an alternative middle ground between filled and outlined buttons. |
BORDERLESS | Enum | Normal text button with no border. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-12-02 UTC.
[null,null,["Last updated 2024-12-02 UTC."],[[["`TextButtonStyle` is used to define the style of a `TextButton` in Google Apps Script's Card Service."],["It offers two options: `OUTLINED` (default, transparent background) and `FILLED` (colored background, customizable with `setBackgroundColor()`)."],["To use a style, refer to it using the syntax: `CardService.TextButtonStyle.STYLE_NAME` (e.g., `CardService.TextButtonStyle.OUTLINED`)."]]],[]]