Returns
a reference to an existing object.
Parameters
Parameters
|
Description
|
v
|
A valid string representing a reference
syntax, property, method, or function.
If the given parameter
is null, the function returns the null reference. For all other
given parameters, the function generates an error exception.
|
ExamplesThe
following expressions are examples that use the Ref function:
Expressions
|
Returns
|
Ref("10*3+5*4")
|
10*3+5*4
|
Ref("hello")
|
hello
|
|
|
|