From 2053c5cc84720a04c74e0afe2d4af1adca2ed347 Mon Sep 17 00:00:00 2001 From: kangshihui Date: Tue, 6 May 2025 21:33:33 +0800 Subject: [PATCH] =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=A1=AB=E5=85=85=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E5=8A=A8=E6=95=88=20Signed-off-by:kangshihui?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I162d4a436ccf8ef504bfb97824421e1fbedd942c --- 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 38f0dfe69..710055131 100644 --- a/arkui/ace_engine/native/native_node.h +++ b/arkui/ace_engine/native/native_node.h @@ -3157,6 +3157,19 @@ typedef enum { */ NODE_TEXT_INPUT_KEYBOARD_APPEARANCE = 7035, + /** + * @brief Set whether to enable the auto fill animation or not. + * + * Format of the {@link ArkUI_AttributeItem} parameter for setting the attribute:\n + * .value[0].i32: Whether to enable the auto fill animation.\n + * \n + * Format of the return value {@link ArkUI_AttributeItem}: \n + * .value[0].i32: Get the flag of whether the auto fill animation is enabled.\n + * + * @since 20 + */ + NODE_TEXT_INPUT_ENABLE_FILL_ANIMATION = 7036, + /** * @brief Defines the default placeholder text for the multi-line text box. * This attribute can be set, reset, and obtained as required through APIs. -- Gitee