From 509d5ae45d51c57af48574e2a34b04c35752481e Mon Sep 17 00:00:00 2001 From: royce-ls Date: Thu, 31 Jul 2025 10:27:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96picker/=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E5=B1=95=E7=A4=BA=E7=B1=BBcapi=E8=B5=84=E6=96=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: royce-ls Change-Id: If861ab23171c8adb318bc624600e5757d07385e3 --- arkui/ace_engine/native/native_node.h | 2 ++ arkui/ace_engine/native/native_type.h | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/arkui/ace_engine/native/native_node.h b/arkui/ace_engine/native/native_node.h index ed130a72f..4628a847d 100644 --- a/arkui/ace_engine/native/native_node.h +++ b/arkui/ace_engine/native/native_node.h @@ -4052,6 +4052,7 @@ typedef enum { * Format of the return value {@link ArkUI_AttributeItem}:\n * .string: date. \n * + * @since 18 */ NODE_DATE_PICKER_START, /** @@ -4064,6 +4065,7 @@ typedef enum { * Format of the return value {@link ArkUI_AttributeItem}:\n * .string: date. \n * + * @since 18 */ NODE_DATE_PICKER_END, /** diff --git a/arkui/ace_engine/native/native_type.h b/arkui/ace_engine/native/native_type.h index 76e20d772..b86e4be1f 100644 --- a/arkui/ace_engine/native/native_type.h +++ b/arkui/ace_engine/native/native_type.h @@ -5010,7 +5010,7 @@ void OH_ArkUI_ProgressLinearStyleOption_SetSmoothEffectEnabled(ArkUI_ProgressLin * @brief Set linear progress indicator stroke width. * * @param option Linear progress indicator style information. - * @param strokeWidth Stroke width of the progress indicator. It cannot be set in percentage. + * @param strokeWidth Stroke width of the progress indicator, in vp. It cannot be set in percentage. * Default value: 4.0vp. * @since 15 */ @@ -5020,7 +5020,7 @@ void OH_ArkUI_ProgressLinearStyleOption_SetStrokeWidth(ArkUI_ProgressLinearStyle * @brief Set linear progress indicator stroke radius. * * @param option Linear progress indicator style information. - * @param strokeRadius Rounded corner radius of the progress indicator. Value range: [0, strokeWidth/2]. + * @param strokeRadius Rounded corner radius of the progress indicator, in vp. Value range: [0, strokeWidth/2]. * Default value: strokeWidth/2. * @since 15 */ @@ -5048,7 +5048,7 @@ bool OH_ArkUI_ProgressLinearStyleOption_GetSmoothEffectEnabled(ArkUI_ProgressLin * @brief Get linear progress indicator stroke width. * * @param option Linear progress indicator style information. - * @return Stroke width of the progress indicator. + * @return Stroke width of the progress indicator, in vp. * @since 15 */ float OH_ArkUI_ProgressLinearStyleOption_GetStrokeWidth(ArkUI_ProgressLinearStyleOption* option); @@ -5057,7 +5057,7 @@ float OH_ArkUI_ProgressLinearStyleOption_GetStrokeWidth(ArkUI_ProgressLinearStyl * @brief Get linear progress indicator stroke radius. * * @param option Linear progress indicator style information. - * @return Rounded corner radius of the progress indicator. + * @return Rounded corner radius of the progress indicator, in vp. * @since 15 */ float OH_ArkUI_ProgressLinearStyleOption_GetStrokeRadius(ArkUI_ProgressLinearStyleOption* option); -- Gitee