Creates a mirror of another JSON element.
This method is provided as a way to avoid having to declare component variables as *DYNAMIC.
Name | Type | Mandatory | Description |
|---|---|---|---|
To | Yes | The target element to mirror. |
None.
The following example makes #Object1 to point to the same object as #Object2.
Define_Com Class(#XPRIM_JsonObject) Name(#Object1)
Define_Com Class(#XPRIM_JsonObject) Name(#Object2)
. . .
#Object1.Refer To(#Object2)