dotVarGet Function
Syntax
* dotVarGet(P dotVar, C property)
Arguments
- dotVar
Dot variable to retrieve the property from.
- property
Name of the property to retrieve (as a string).
Description
Gets the value of a property from a dot variable using the property name as a string.
Example
dim p as P
dim property as C = "dob"
dim value as D = {12/18/1972}
dotVarSet(p, property, value)
dim result as A
result = dotVarGet(p, property)
? result ' Outputs: 12/18/1972See Also