From 6c65afd6555acc36fd1fe1d53a733f0ae549fcbd Mon Sep 17 00:00:00 2001 From: luoweibin Date: Sat, 28 Jun 2025 10:11:34 +0800 Subject: [PATCH] =?UTF-8?q?interface=5Fnative=5Fheader=20=E7=BB=9F?= =?UTF-8?q?=E4=B8=80=E8=B5=B7=E5=A7=8B=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: luoweibin --- arkui/ace_engine/native/native_node.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/arkui/ace_engine/native/native_node.h b/arkui/ace_engine/native/native_node.h index 9912bb252..bdf9780f1 100644 --- a/arkui/ace_engine/native/native_node.h +++ b/arkui/ace_engine/native/native_node.h @@ -5205,7 +5205,7 @@ typedef enum { * Scroll component is 1. \n * .value[2]?.i32: direction in which the effect takes effect. The parameter type is {@link ArkUI_EffectEdge}. * The default value is ARKUI_EFFECT_EDGE_START | ARKUI_EFFECT_EDGE_END. This parameter is supported since - * API version 16. \n + * API version 18. \n * \n * Format of the return value {@link ArkUI_AttributeItem}:\n * .value[0].i32: effect used at the edges of the component when the boundary of the scrollable content is reached. @@ -5213,7 +5213,7 @@ typedef enum { * .value[1].i32: whether to enable the scroll effect when the component content size is smaller than the component * itself. Optional. The value 1 means to enable the scroll effect, and 0 means the opposite. \n * .value[2].i32: edge for which the effect takes effect when the boundary of the scrollable content is reached. - * The parameter type is {@link ArkUI_EffectEdge}. This parameter is supported since API version 16. \n + * The parameter type is {@link ArkUI_EffectEdge}. This parameter is supported since API version 18. \n * */ NODE_SCROLL_EDGE_EFFECT, @@ -5574,6 +5574,7 @@ typedef enum { * .value[2]?.i32:Specify the alignment of the sliding element with the current container,The parameter type is * {@link ArkUI_ScrollAlignment}, default value is ARKUI_SCROLL_ALIGNMENT_START. \n * .value[3]?.f32: extra offset, in vp. The default value is 0. + * This parameter is supported since API version 15. \n * */ NODE_LIST_SCROLL_TO_INDEX, @@ -6462,7 +6463,7 @@ typedef enum { * This attribute can be set, reset, and obtained as required through APIs. * * Format of the {@link ArkUI_AttributeItem} parameter for setting the attribute:\n - * value[0].i32:number of cached items in the water flow adapter. \n + * .value[0].i32:number of cached items in the water flow adapter. \n * .value[1]?.i32:whether to the cached items will be displayed, 0: not displayed, 1: displayed, default value: 0. * This parameter is supported since API version 16. \n * \n -- Gitee