From 1e754b05d3845df71a719208a9010c0804ceb862 Mon Sep 17 00:00:00 2001 From: wangxiuxiu Date: Fri, 8 Nov 2024 15:35:07 +0800 Subject: [PATCH] setAutoFocusTransfer capi Signed-off-by: wangxiuxiu Change-Id: I00b7f999783b32e1ac6b69f6ebe21e77da4efcaf --- 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 d57414dcc..33062eef7 100644 --- a/arkui/ace_engine/native/native_node.h +++ b/arkui/ace_engine/native/native_node.h @@ -1825,6 +1825,19 @@ typedef enum { * */ NODE_CLICK_DISTANCE = 97, + + /** + * @brief Set whether to enable autofocus transfer. + * 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: The parameter type is 1 or 0. + * \n + * Format of the return value {@link ArkUI_AttributeItem}:\n + * .value[0].i32: The parameter type is 1 or 0. + * + */ + NODE_AUTO_FOCUS_TRANSFER = 98, /** * @brief Defines the text content attribute, which can be set, reset, and obtained as required through APIs. -- Gitee