|
  
Property
Format: x . y
Arguments: (object) x Name of an object or
expression that evaluates to an object
(node) y Name of the property or method to access
Returns: [any] Value of the property or method named y
in the object x
Description: This operator is used to access an object
property or method.
Examples: x:=new Object() = creates
an object named x
x.width=5 = sets the property
named width to a value of 5
x.width = 5
x.toString() = calls the
method named toString in the object x
See Also: New, List Element, Function Call
|