From 86b04b8a2e1e6e862d1c0c3b3501254a889d2dab Mon Sep 17 00:00:00 2001 From: wangxiuxiu96 Date: Mon, 25 Aug 2025 17:29:32 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E7=94=9F=E6=80=81=E3=80=91TextArea?= =?UTF-8?q?=E6=8E=A7=E4=BB=B6=E6=94=AF=E6=8C=81capi=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E6=BB=9A=E5=8A=A8=E6=9D=A1=E6=98=AF=E5=90=A6=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: wangxiuxiu96 Change-Id: I6ae615b1d027995d3dff9e78f02679a03b03670b --- arkui/ace_engine/native/native_node.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/arkui/ace_engine/native/native_node.h b/arkui/ace_engine/native/native_node.h index c6abaae6267..94fb2c9686c 100644 --- a/arkui/ace_engine/native/native_node.h +++ b/arkui/ace_engine/native/native_node.h @@ -3746,6 +3746,20 @@ typedef enum { */ NODE_TEXT_AREA_LINE_HEIGHT = 8031, + /** + * @brief Defines the scrollbar status. 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: scrollbar status. The parameter type is {@link ArkUI_ScrollBarDisplayMode}. The default value is + * ARKUI_SCROLL_BAR_DISPLAY_MODE_AUTO. \n + * \n + * Format of the return value {@link ArkUI_AttributeItem}:\n + * .value[0].i32: scrollbar status. The parameter type is {@link ArkUI_ScrollBarDisplayMode}. \n + * + * @since 21 + */ + NODE_TEXT_AREA_BAR_DISPLAY_MODE = 8032, + /** * @brief Defines the button text content. This attribute can be set, reset, and obtained as required through APIs. * -- Gitee