diff --git a/arkui/ace_engine/native/native_node.h b/arkui/ace_engine/native/native_node.h index ed130a72f36565987623fe5ba2c0b94ac43b6db9..4628a847d2d4dfc55a7faaef2b21092fe8366efc 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 76e20d772e30798a0468e474449a5b1faa922073..b86e4be1ff742526ae278925e0d66ac829ad5ea6 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);