*ByRef Operator
The * ByRef operator is used to declare that the associated reference parameter is being passed by reference .
Example
myObject.Mymethod( Parm1, *ByRef Parm2, Parm3 ) // Parm2 is passed by reference
The * ByRef operator is used to declare that the associated reference parameter is being passed by reference .
myObject.Mymethod( Parm1, *ByRef Parm2, Parm3 ) // Parm2 is passed by reference