| 
       Get ( )
        Get ( INPUT index AS INTEGER ) Get ( INPUT instance AS Progress.Lang.Object ) Get ( INPUT instance AS Progress.Lang.Object, INPUT index AS INTEGER ) | 
 When applied to a property, the method will invoke the property's GET method, if there is one.
When applied to a property, the method will invoke the property's GET method, if there is one.
   Use the Get( ) and Get(index) overloads to get the value of static data members and properties, and use the Get(instance) and Get(instance, index) overloads for instance data members and properties. Calling an overload on a data member or property of the incorrect scope will raise an error.
Use the Get( ) and Get(index) overloads to get the value of static data members and properties, and use the Get(instance) and Get(instance, index) overloads for instance data members and properties. Calling an overload on a data member or property of the incorrect scope will raise an error.
   When called on a data member or property that is an array, the Get( ) and Get(instance) overloads return the entire array.
When called on a data member or property that is an array, the Get( ) and Get(instance) overloads return the entire array.
   The Get(index) and Get(instance, index) overloads cannot be used to retrieve individual elements from a .NET array.
The Get(index) and Get(instance, index) overloads cannot be used to retrieve individual elements from a .NET array.