GETREF
Description
Returns a reference pointer to a function or subroutine.
Example
Function refTest
MsgBox "RefTest"
End Function
Dim x
Set x=getRef("refTest")
Print TypeName(x)
x
Output
Object
RefTest
Related Items