From 4c599edbf76beacc52524198e2f9890f74282d15 Mon Sep 17 00:00:00 2001 From: "ester.zhou" Date: Fri, 16 Jun 2023 11:13:54 +0800 Subject: [PATCH] fixed edad7d7 from https://gitee.com/esterzhou/docs/pulls/19810 Update docs (18881) Signed-off-by: ester.zhou --- .../reference/arkui-ts/ts-basic-components-marquee.md | 2 +- .../reference/arkui-ts/ts-container-relativecontainer.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/en/application-dev/reference/arkui-ts/ts-basic-components-marquee.md b/en/application-dev/reference/arkui-ts/ts-basic-components-marquee.md index a6c0b032ca..e14c0aee93 100644 --- a/en/application-dev/reference/arkui-ts/ts-basic-components-marquee.md +++ b/en/application-dev/reference/arkui-ts/ts-basic-components-marquee.md @@ -33,7 +33,7 @@ Since API version 9, this API is supported in ArkTS widgets. | Name | Type| Description | | ---------- | -------- | ------------------------------------------------------------ | -| allowScale | boolean | Whether to allow text to scale.
Default value: **false**
Since API version 9, this API is supported in ArkTS widgets.| +| allowScale | boolean | Whether to allow text to scale.
This attribute is not supported currently.
Default value: **false** | ## Events diff --git a/en/application-dev/reference/arkui-ts/ts-container-relativecontainer.md b/en/application-dev/reference/arkui-ts/ts-container-relativecontainer.md index 77f136b9f2..d9199a9659 100644 --- a/en/application-dev/reference/arkui-ts/ts-container-relativecontainer.md +++ b/en/application-dev/reference/arkui-ts/ts-container-relativecontainer.md @@ -15,7 +15,7 @@ The **\** component is used for element alignment in complex * Alignment modes in the vertical direction can be top, center, or bottom, achieved by the **VerticalAlign.Top**, **VerticalAlign.Center**, and **VerticalAlign.Bottom** attributes of the container, respectively. * A child component can set the container or another child component as the anchor. * To show in the **\**, child components must have an ID. The container ID is fixed at **__container__**. - * Three positions of the child component in a direction can use three positions of the container or another child components in the same direction as anchors. If anchors are set for more than two positions in a single direction, the third position is skipped. + * Three positions on the child component in a specific direction can use as anchors three positions on the container or another child component in the same direction. If anchors are set for more than two positions in a single direction, then: Start and Center are preferred in the horizontal direction, and Top and Center are preferred in the vertical direction. * The child component size set on the frontend page is not affected by the **\** rules. If two or more **alignRules** values are set for one direction of the child component, you are not advised to set the size for this direction. * If offset is required after the alignment, it can be set through **offset**. * Exceptions -- GitLab