diff --git a/zh-cn/application-dev/reference/apis-arkui/arkui-ts/ts-basic-components-button.md b/zh-cn/application-dev/reference/apis-arkui/arkui-ts/ts-basic-components-button.md index 61127fa99acc6645dbe3855a0635578b7656a92f..b38ac8ac48ba7e8f1c8d33e56e4653d6a156d349 100644 --- a/zh-cn/application-dev/reference/apis-arkui/arkui-ts/ts-basic-components-button.md +++ b/zh-cn/application-dev/reference/apis-arkui/arkui-ts/ts-basic-components-button.md @@ -96,7 +96,7 @@ Button(label: ResourceStr, options?: ButtonOptions) | -------------------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | | overflow | [TextOverflow](ts-appendix-enums.md#textoverflow) | 否 | 设置Label文本超长时的显示方式。文本截断是按字截断。例如,英文以单词为最小单位进行截断,若需要以字母为单位进行截断,可在字母间添加零宽空格。
默认值:TextOverflow.Ellipsis | | maxLines | number | 否 | 设置Label文本的最大行数。默认情况下,文本是自动折行的,如果指定此参数,则文本最多不会超过指定的行。如果有多余的文本,可以通过overflow来指定截断方式。
默认值:1 | -| minFontSize | number \| [ResourceStr](ts-types.md#resourcestr) | 否 | 设置Label文本最小显示字号。需配合maxFontSize以及maxLines或布局大小限制使用。 | +| minFontSize | number \| [ResourceStr](ts-types.md#resourcestr) | 否 | 设置Label文本最小显示字号。需配合maxFontSize以及maxLines或布局大小限制使用。
**说明:**
minFontSize小于或等于0时,自适应字号不生效。 | | maxFontSize | number \| [ResourceStr](ts-types.md#resourcestr) | 否 | 设置Label文本最大显示字号。需配合minFontSize以及maxLines或布局大小限制使用。 | | heightAdaptivePolicy | [TextHeightAdaptivePolicy](ts-appendix-enums.md#textheightadaptivepolicy10) | 否 | 设置Label文本自适应高度的方式。
默认值:TextHeightAdaptivePolicy.MAX_LINES_FIRST。 | | font | [Font](ts-types.md#font) | 否 | 设置Label文本字体样式。
默认值:默认值参考[Font](ts-types.md#font)。 |