Object Pointer Methods
Description
Methods available for object pointers (i.e. dot variables).
Discussion
The object pointer may be referred to as obj in the object pointer method documentation. To call methods on an object pointer, replace the obj placeholder with the name of the object pointer variable in your code. For example:
dim myObj as p myObj.x = 12 myObj.y = 17 dim xVal as N xVal = myObj.data("x")
- Name
- Description
- Object Pointer data Method
Returns the value of the property, if it exists.