Home
last modified time | relevance | path

Searched refs:onDetectResultUpdate (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_component/src/
H A DArkRichEditor.ts43 …Module().richEditor.setDataDetectorConfig(node, this.value.types, this.value.onDetectResultUpdate);
48 !isBaseOrResourceEqual(this.stageValue.onDetectResultUpdate, this.value.onDetectResultUpdate);
284 detectorConfig.onDetectResultUpdate = config.onDetectResultUpdate;
H A DArkText.ts729 …NativeModule().text.setDataDetectorConfig(node, this.value.types, this.value.onDetectResultUpdate);
734 !isBaseOrResourceEqual(this.stageValue.onDetectResultUpdate, this.value.onDetectResultUpdate);
832 detectorConfig.onDetectResultUpdate = config.onDetectResultUpdate;
H A DArkClassDefine.ts1425 onDetectResultUpdate: (result: string) => void;
1428 this.onDetectResultUpdate = undefined;
1432 (this.onDetectResultUpdate === another.onDetectResultUpdate);
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-text-common.md365 | onDetectResultUpdate | (result: string) => void | 否 | 文本识别成功后,触发onDetectResultUpdate回调。<br/>-…
H A Dts-basic-components-text.md1437 .dataDetectorConfig({types : this.types, onDetectResultUpdate: (result: string)=>{}})
H A Dts-basic-components-richeditor.md3644 .dataDetectorConfig({types : this.types, onDetectResultUpdate: (result: string)=>{}})
3875 .dataDetectorConfig({types : this.types, onDetectResultUpdate: (result: string)=>{}})
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dnode_text_modifier.cpp1263 auto onDetectResultUpdate = [node, extraParam](const std::string& str) { in SetOnDetectResultUpdate() local
1271 TextModelNG::SetOnDetectResultUpdate(frameNode, std::move(onDetectResultUpdate)); in SetOnDetectResultUpdate()
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-text-common.md365 | onDetectResultUpdate | (result: string) => void | No | Callback invoked when text recognition …
H A Dts-basic-components-text.md1437 .dataDetectorConfig({types : this.types, onDetectResultUpdate: (result: string)=>{}})
H A Dts-basic-components-richeditor.md3631 .dataDetectorConfig({types : this.types, onDetectResultUpdate: (result: string)=>{}})
3860 .dataDetectorConfig({types : this.types, onDetectResultUpdate: (result: string)=>{}})
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DarkComponent.js8134 …eModule().richEditor.setDataDetectorConfig(node, this.value.types, this.value.onDetectResultUpdate,
8140 !isBaseOrResourceEqual(this.stageValue.onDetectResultUpdate, this.value.onDetectResultUpdate) ||
8389 detectorConfig.onDetectResultUpdate = config.onDetectResultUpdate;
11612 …INativeModule().text.setDataDetectorConfig(node, this.value.types, this.value.onDetectResultUpdate,
11618 !isBaseOrResourceEqual(this.stageValue.onDetectResultUpdate, this.value.onDetectResultUpdate) ||
11774 detectorConfig.onDetectResultUpdate = config.onDetectResultUpdate;
15561 this.onDetectResultUpdate = undefined;
15568 …return (this.types === another.types) && (this.onDetectResultUpdate === another.onDetectResultUpda…
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/
H A D_ark_u_i___native_module.md3459 | NODE_TEXT_ON_DETECT_RESULT_UPDATE | 文本设置TextDataDetectorConfig且识别成功时,触发onDetectResultUpdate回调。<b…