Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
937fce2c
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
937fce2c
编写于
1月 28, 2023
作者:
L
lijuan
提交者:
李娟
2月 09, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fixed
7b3127a5
from
https://gitee.com/lijuan124/docs/pulls/13931
text文档修改 Signed-off-by:
N
lijuan
<
lijuan124@huawei.com
>
上级
eca67c76
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
4 addition
and
4 deletion
+4
-4
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-text.md
...cation-dev/reference/arkui-ts/ts-basic-components-text.md
+3
-3
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-text-style.md
.../reference/arkui-ts/ts-universal-attributes-text-style.md
+1
-1
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-text.md
浏览文件 @
937fce2c
...
...
@@ -28,15 +28,15 @@ Text(content?: string | Resource)
| 名称 | 参数类型 | 描述 |
| ----------------------- | ----------------------------------- | ------------------------------------------- |
| textAlign |
[
TextAlign
](
ts-appendix-enums.md#textalign
)
| 设置文本
在水平方向的对齐方式。
<br/>
默认值:TextAlign.Start
|
| textAlign |
[
TextAlign
](
ts-appendix-enums.md#textalign
)
| 设置文本
段落在水平方向的对齐方式
<br/>
默认值:TextAlign.Start
<br/>
说明:
<br/>
文本段落宽度占满Text组件宽度;可通过
[
align
](
ts-universal-attributes-location.md
)
属性控制文本段落在垂直方向上的位置。
|
| textOverflow | {overflow:
[
TextOverflow
](
ts-appendix-enums.md#textoverflow
)
} | 设置文本超长时的显示方式。
<br/>
默认值:{overflow:
TextOverflow.Clip}
<br/>
**说明:**
<br/>
文本截断是按字截断。例如,英文以单词为最小单位进行截断,若需要以字母为单位进行截断,可在字母间添加零宽空格:
\u
200B。
<br
/>
需配合
`maxLines`
使用,单独设置不生效。 |
| maxLines | number | 设置文本的最大行数。
<br
/>
默认值:Infinity
<br/>
**说明:**
<br
/>
默认情况下,文本是自动折行的,如果指定此参数,则文本最多不会超过指定的行。如果有多余的文本,可以通过
`textOverflow`
来指定截断方式。 |
| lineHeight | string
\|
number
\|
[
Resource
](
ts-types.md#resource
)
| 设置文本的文本行高,设置值不大于0时,不限制文本行高,自适应字体大小,Length为number类型时单位为fp。 |
| decoration | {
<br/>
type:
[TextDecorationType](ts-appendix-enums.md#textdecorationtype),
<br/>
color?:
[
ResourceColor
](
ts-types.md#resourcecolor
)
<br/>
} | 设置文本装饰线样式及其颜色。
<br
/>
默认值:{
<br/>
type:
TextDecorationType.None,
<br/>
color:Color.Black
<br/>
} |
| baselineOffset | number
\|
string | 设置文本基线的偏移量,默认值0。 |
| letterSpacing | number
\|
string | 设置文本字符间距。 |
| minFontSize | number
\|
string
\|
[
Resource
](
ts-types.md#resource
)
| 设置文本最小显示字号。
|
| maxFontSize | number
\|
string
\|
[
Resource
](
ts-types.md#resource
)
| 设置文本最大显示字号。 |
| minFontSize | number
\|
string
\|
[
Resource
](
ts-types.md#resource
)
| 设置文本最小显示字号。
<br/>
需配合maxFontSize以及maxline或布局大小限制使用,单独设置不生效。
|
| maxFontSize | number
\|
string
\|
[
Resource
](
ts-types.md#resource
)
| 设置文本最大显示字号。
<br/>
需配合minFontSize以及maxline或布局大小限制使用,单独设置不生效。
|
| textCase |
[
TextCase
](
ts-appendix-enums.md#textcase
)
| 设置文本大小写。
<br
/>
默认值:TextCase.Normal |
| copyOption
<sup>
9+
</sup>
|
[
CopyOptions
](
ts-appendix-enums.md#copyoptions9
)
| 组件支持设置文本是否可复制粘贴。
<br
/>
默认值:CopyOptions.None |
...
...
zh-cn/application-dev/reference/arkui-ts/ts-universal-attributes-text-style.md
浏览文件 @
937fce2c
...
...
@@ -14,7 +14,7 @@
| 名称 | 参数类型 | 描述 |
| -----------| ---------------------------------------- | ------------------------------------ |
| fontColor |
[
ResourceColor
](
ts-types.md#resourcecolor
)
| 设置字体颜色。 |
| fontSize |
[
Length
](
ts-types.md#length
)
| 设置字体大小,Length为number类型时,使用fp单位。字体默认大小1
0
。不支持设置百分比字符串。 |
| fontSize |
[
Length
](
ts-types.md#length
)
| 设置字体大小,Length为number类型时,使用fp单位。字体默认大小1
6
。不支持设置百分比字符串。 |
| fontStyle |
[
FontStyle
](
ts-appendix-enums.md#fontstyle
)
| 设置字体样式。
<br>
默认值:FontStyle.Normal |
| fontWeight | number
\|
[FontWeight](ts-appendix-enums.md#fontweight)
\|
string | 设置文本的字体粗细,number类型取值[100,
900],取值间隔为100,默认为400,取值越大,字体越粗。string类型仅支持number类型取值的字符串形式,例如"400",以及"bold"、"bolder"、"lighter"、"regular"、"medium",分别对应FontWeight中相应的枚举值。
<br/>
默认值:FontWeight.Normal |
| fontFamily | string
\|
[
Resource
](
ts-types.md#resource
)
| 设置字体列表。默认字体'HarmonyOS Sans',且当前只支持这种字体。|
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录