From 8d2faef167eaf35f41d8228bdc41518032091fbd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=BE=90=E5=BB=BA=E5=9B=BD?= <852851198@qq.com>
Date: Mon, 27 Jun 2022 23:36:02 +0800
Subject: [PATCH] =?UTF-8?q?:=E5=A2=9E=E5=8A=A0maxLines=E7=9A=84=E6=8F=8F?=
=?UTF-8?q?=E8=BF=B0=E5=BE=90=E5=BB=BA=E5=9B=BD852851198@qq.com?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: 徐建国 <852851198@qq.com>
---
.../reference/arkui-ts/ts-basic-components-text.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-text.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-text.md
index 6abe2b1d3a..b8ce970cbd 100644
--- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-text.md
+++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-text.md
@@ -32,8 +32,8 @@ Text(content?: string)
| 名称 | 参数类型 | 默认值 | 描述 |
| -------- | -------- | -------- | -------- |
| textAlign | TextAlign | TextAlign.Start | 设置多行文本的文本对齐方式。 |
-| textOverflow | {overflow: TextOverflow} | {overflow: TextOverflow.Clip} | 设置文本超长时的显示方式。
**说明:**
文本截断是按字截断。例如,英文以单词为最小单位进行截断,若需要以字母为单位进行截断,可在字母间添加零宽空格:\u200B。 |
-| maxLines | number | Infinity | 设置文本的最大行数。 |
+| textOverflow | {overflow: TextOverflow} | {overflow: TextOverflow.Clip} | 设置文本超长时的显示方式。
**说明:**
文本截断是按字截断。例如,英文以单词为最小单位进行截断,若需要以字母为单位进行截断,可在字母间添加零宽空格:\u200B。
需配合`maxLines`使用,单独设置不生效。 |
+| maxLines | number | Infinity | 设置文本的最大行数。
**说明:**
默认情况下,文本是自动折行的,如果指定此参数,则文本最多不会超过指定的行。如果有多余的文本,可以通过 `textOverflow`来指定截断方式。 |
| lineHeight | Length | - | 设置文本的文本行高,设置值不大于0时,不限制文本行高,自适应字体大小,Length为number类型时单位为fp。 |
| decoration | {
type: TextDecorationType,
color?: Color
} | {
type: TextDecorationType.None,
color: Color.Black
} | 设置文本装饰线样式及其颜色。 |
| baselineOffset | Length | - | 设置文本基线的偏移量。 |
--
GitLab