Home
last modified time | relevance | path

Searched refs:getAttachedFrameNodeById (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DjsUIContext.js538 getAttachedFrameNodeById(id) { method in UIContext
540 let nodePtr = getUINativeModule().getAttachedFrameNodeById(id);
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/
H A Djs-apis-arkui-UIContext.md436 > getFrameNodeById通过遍历查询对应id的节点,性能较差。推荐使用[getAttachedFrameNodeById](#getattachedframenodebyid12)。
444 ### getAttachedFrameNodeById<sup>12+</sup>
446 getAttachedFrameNodeById(id: string): FrameNode | null
468 > getAttachedFrameNodeById仅能查询上屏节点。
473 uiContext.getAttachedFrameNodeById("TestNode")
/ohos5.0/docs/en/application-dev/reference/apis-arkui/
H A Djs-apis-arkui-UIContext.md436 …ad to poor performance. To deliver better performance, use the [getAttachedFrameNodeById](#getatta…
444 ### getAttachedFrameNodeById<sup>12+</sup>
446 getAttachedFrameNodeById(id: string): FrameNode | null
468 > **getAttachedFrameNodeById** can only obtain nodes that are currently rendered on the screen.
473 uiContext.getAttachedFrameNodeById("TestNode")
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/arkoala/
H A Darkoala_api.h4819 ArkUINodeHandle (*getAttachedFrameNodeById)(ArkUI_CharPtr key); member
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_api_impl_bridge.cpp306 …auto nodePtr = GetArkUINodeModifiers()->getFrameNodeModifier()->getAttachedFrameNodeById(key.c_str… in GetAttachedFrameNodeById()