Lines Matching refs:ComponentContent
7 …hanism to embed ArkTS components using [ComponentContent](../reference/apis-arkui/js-apis-arkui-Co…
14 …he [update](../reference/apis-arkui/js-apis-arkui-ComponentContent.md#update) API of **ComponentCo…
27 … creation function to the native side for it to call, and use the **ComponentContent** capability …
30 // Create ArkTS components using the ComponentContent capability.
32 import { NodeContent, UIContext, RefreshModifier, ComponentContent } from '@kit.ArkUI';
56 …// ComponentContent encapsulates the ArkTS component dependency on the global @Builder function. Y…
57 …meters, making it convenient to update parameters later through the update API of ComponentContent.
83 content?: ComponentContent<RefreshAttribute>;
111 // Create the Refresh component using ComponentContent and encapsulate it.
112 …let content = new ComponentContent<RefreshAttribute>(uiContent!, wrapBuilder<[RefreshAttribute]>(m…
126 …export function updateMixedRefresh(refresh: ComponentContent<RefreshAttribute>, childSlot: NodeCon…
144 // Call the update API of ComponentContent to update.
417 …(can be a transformation object of ArkTS on the native side through ComponentContent, or a pure na…
556 // Call the ArkTS Create function to create the ArkTS ComponentContent.
571 …// Save the ArkTS ComponentContent to prevent the object on the ArkTS side from being released and…