From 055161e09ad748d9024c5031093c1daec708b955 Mon Sep 17 00:00:00 2001 From: kangchongtao Date: Thu, 1 Sep 2022 17:39:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9line=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: kangchongtao --- .../reference/arkui-ts/ts-drawing-components-line.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-drawing-components-line.md b/zh-cn/application-dev/reference/arkui-ts/ts-drawing-components-line.md index 60cb3df611..ddb7da4114 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-drawing-components-line.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-drawing-components-line.md @@ -39,14 +39,8 @@ Line(options?: {width: Length, height: Length}) | -------- | -------- | -------- | -------- | -------- | | width | [Length](../../ui/ts-types.md#length) | 0 | 否 | 直线所在矩形的宽度。 | | height | [Length](../../ui/ts-types.md#length) | 0 | 否 | 直线所在矩形的高度。 | -| startPoint | Array<Point> | [0, 0] | 是 | 直线起点坐标(相对坐标)。 | -| endPoint | Array<Point> | [0, 0] | 是 | 直线终点坐标(相对坐标)。 | - -## Point - -| 名称 | 类型定义 | 描述 | -| ----- | --------------------- | ---------------------------------------------------- | -| Point | [[Length](../../ui/ts-types.md#length), [Length](ts-types.md#length)] | 用于描述点坐标,第一个值为x轴坐标,第二个值为y坐标。 | +| startPoint | Array | [0, 0] | 是 | 直线起点坐标点(相对坐标)。 | +| endPoint | Array | [0, 0] | 是 | 直线终点坐标点(相对坐标)。 | ## 示例 -- GitLab