Enum HorizontalSizeStyle
HorizontalSizeStyle
一种枚举,设置微件如何填充列空间。
适用于 Google Chat 应用和 Google Workspace 插件。
如需调用枚举,您需要调用其父类、名称和属性。例如
CardService.HorizontalSizeStyle.FILL_AVAILABLE_SPACE
。
属性
属性 | 类型 | 说明 |
FILL_AVAILABLE_SPACE | Enum | 调整 Widget 的大小,以填充 Column 的可用水平空间。如果
其他列具有更多空间,则 widget 可以填充自身列空间以外的空间。
默认。 |
FILL_MINIMUM_SPACE | Enum | 调整 Widget 的大小,以尽可能减少 Column 中的水平空间。
最小空间取决于 widget 的大小。如果 widget 比空间小
则该列不会展开即可填充空间。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-07-24。
[null,null,["最后更新时间 (UTC):2024-07-24。"],[[["HorizontalSizeStyle is an enum used to define how widgets occupy space within a column in Google Chat apps and Google Workspace Add-ons."],["It offers two properties: `FILL_AVAILABLE_SPACE` (default) which expands the widget to fill the available horizontal space, potentially exceeding its column's width, and `FILL_MINIMUM_SPACE` which sizes the widget to its minimum required width based on its content."],["To use these properties, call them using the parent class, name, and property, like `CardService.HorizontalSizeStyle.FILL_AVAILABLE_SPACE`."]]],[]]