The ObjectMove attribute function can be used to move an object to another object variable. The object variable receiving the object must have an appropriate type.
Syntax | |
ObjectMove() | |
Return value | |
Type |
Description |
TCE Object |
typeless Object |
Remark | |
The returned object is typeless and must be assigned or typed through a Typecast before using a TCE object variable. |
Examples:
Dim F2 As ::TV
F1 := ::Plasma
F2 := F1.ObjectMove
# F1 ist now NoValue, F2 is now Plasma
Dim L() As ::TV
L(0) := ::Plasma
L(1) := L(0).ObjectMove
# L(0) is now NoValue, L(1) is now Plasma