From 5f0aeaadbe0523b7b409d82943d1df8c2128cd18 Mon Sep 17 00:00:00 2001 From: wangxiuxiu96 Date: Tue, 26 Aug 2025 16:30:07 +0800 Subject: [PATCH] =?UTF-8?q?TextArea=E6=8E=A7=E4=BB=B6=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=BB=9A=E5=8A=A8=E6=9D=A1=E9=A2=9C=E8=89=B2?= =?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 --- 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 df32a038e63..339c5a1172f 100644 --- a/arkui/ace_engine/native/native_node.h +++ b/arkui/ace_engine/native/native_node.h @@ -3861,6 +3861,20 @@ typedef enum { */ NODE_TEXT_AREA_LINE_HEIGHT = 8031, + /** + * @brief Defines the color of the scrollbar. This attribute can be set, reset, and obtained as required + * through APIs. + * + * Format of the {@link ArkUI_AttributeItem} parameter for setting the attribute:\n + * .data[0].u32: The color of the scroll bar text area is represented in 0xARGB format. \n + * \n + * Format of the return value {@link ArkUI_AttributeItem}:\n + * .data[0].u32: The color of the scroll bar text area is represented in 0xARGB format. \n + * + * @since 21 + */ + NODE_TEXT_AREA_SCROLL_BAR_COLOR = 8032, + /** * @brief Defines the button text content. This attribute can be set, reset, and obtained as required through APIs. * -- Gitee