From 6d4fdfc753cefb084b2d4fd7d87ddc31efb9453c Mon Sep 17 00:00:00 2001 From: liuyongkai2 Date: Fri, 5 Sep 2025 17:19:39 +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?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: liuyongkai2 --- arkui/ace_engine/native/native_node.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/arkui/ace_engine/native/native_node.h b/arkui/ace_engine/native/native_node.h index 516876804a0..447c9b392c2 100644 --- a/arkui/ace_engine/native/native_node.h +++ b/arkui/ace_engine/native/native_node.h @@ -7871,6 +7871,19 @@ typedef enum { */ NODE_TEXT_AREA_ON_WILL_CHANGE = 8013, + /** + * @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: color of the scrollbar, in 0xARGB format. \n + * \n + * Format of the return value {@link ArkUI_AttributeItem}:\n + * .data[0].u32: color of the scrollbar, in 0xARGB format. \n + * + */ + NODE_TEXT_AREA_SCROLL_BAR_COLOR = 8014, + /** * @brief Defines the event triggered when the selected status of the ARKUI_NODE_CHECKBOX component changes. * -- Gitee