pub unsafe extern "C" fn napi_delete_property(
env: napi_env,
object: napi_value,
key: napi_value,
result: *mut bool,
) -> napi_statusAvailable on crate feature
napi only.Expand description
Delete the named property of the given ArkTS Object.
§Arguments
-
env- Current running virtual machine context. -
object- The ArkTS object. -
key- The name of the property to delete. -
result- Whether the execution is succeed or not. Can optionally be ignored by passing nullptr.
§Returns
- Returns the function execution status.
[
napi_ok] If the function executed successfully.
[napi_invalid_arg] If the param env, object and(or) key is nullptr.
[napi_object_expected] If the param object is not an ArkTS Object.
[napi_pending_exception] If have uncaught exception, or exception occurred in execution.
Available since API-level: 10