| 
       GetProperties ( )
        GetProperties ( INPUT flags AS Progress.Reflect.Flags ) | 
 If there are one or more overrides of any particular property, the Progress.Reflect.Property instance describes the override from the most derived subclass that overrides that property. You will NOT get multiple entries for overridden properties. See GetMethod( ) method for an example of how overridden class members are handled.
If there are one or more overrides of any particular property, the Progress.Reflect.Property instance describes the override from the most derived subclass that overrides that property. You will NOT get multiple entries for overridden properties. See GetMethod( ) method for an example of how overridden class members are handled.
   GetProperties( ) only returns public, non-static properties. GetProperties(flags) does return protected, private, and/or static properties if they match the specified conditions, although you cannot get or set the values of any private or protected properties that are returned. Only private properties that are defined in the given class are returned; private properties inherited from a super class are not included.
GetProperties( ) only returns public, non-static properties. GetProperties(flags) does return protected, private, and/or static properties if they match the specified conditions, although you cannot get or set the values of any private or protected properties that are returned. Only private properties that are defined in the given class are returned; private properties inherited from a super class are not included.
   This method does not return .NET class properties defined as private or internal.
This method does not return .NET class properties defined as private or internal.