Enum InputType
输入类型
用于定义微件的输入类型的枚举。
InputType.TEXT
表示输入接受常规文本,包括所有字符。
InputType.INTEGER
表示输入接受整数。
InputType.FLOAT
表示输入接受浮点数。
InputType.EMAIL
表示输入接受电子邮件地址。
如需调用枚举,您可以调用其父类、名称和属性。例如
CardService.InputType.INTEGER
。
属性
属性 | 类型 | 说明 |
TEXT | Enum | 接受普通文本。 |
INTEGER | Enum | 接受整数。 |
FLOAT | Enum | 接受浮点数。 |
EMAIL | Enum | 接受电子邮件地址。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-12-02。
[null,null,["最后更新时间 (UTC):2024-12-02。"],[[["InputType is an enum defining the accepted input type for a widget, such as text, integer, float, or email."],["To utilize an enum, reference its parent class, name, and property, for instance: `CardService.InputType.INTEGER`."],["This feature is currently in Developer Preview and accessible through the Google Workspace Developer Preview Program."]]],["`InputType` is an enum defining acceptable input types for a widget. It includes `TEXT` for all characters, `INTEGER` for whole numbers, `FLOAT` for decimal numbers, and `EMAIL` for email addresses. Each type is called using its parent class, name, and property, like `CardService.InputType.INTEGER`. This feature is part of the Google Workspace Developer Preview Program. Each Input Type Property can be referenced in a table to explain it in detail, such as Type, and Description.\n"]]