From 353965c56a8cf6a5c5071524d9b261094a640974 Mon Sep 17 00:00:00 2001 From: royce-ls Date: Thu, 31 Jul 2025 11:24:28 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96capi=E6=B3=A8=E9=87=8A?= =?UTF-8?q?=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: royce-ls Change-Id: Idc30799add80a284ab82d43842afea186a7daa46 --- interfaces/native/native_type.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/interfaces/native/native_type.h b/interfaces/native/native_type.h index 892bf1c1c01..3f50e34bf71 100644 --- a/interfaces/native/native_type.h +++ b/interfaces/native/native_type.h @@ -4845,7 +4845,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 */ @@ -4855,7 +4855,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 */ @@ -4883,7 +4883,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); @@ -4892,7 +4892,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