GetConstructors( ) method

Returns an array of Progress.Reflect.Constructor instances that match the specified conditions. There is no guaranteed order for the returned constructors. If there are no constructors that match the specified conditions, the method returns an indeterminate array.

Return type: Progress.Reflect.Constructor class EXTENT

Access: PUBLIC

Applies to: Progress.Lang.Class class

Syntax

GetConstructors ( )

GetConstructors ( INPUT flags AS Progress.Reflect.Flags )
flags
A Progress.Reflect.Flags instance indicating the access mode(s) the returned constructors must have. See Progress.Reflect.Flags enumeration for more information.
Caution:
This method does not return static constructors, so setting the Static flag will raise an error. Unlike other reflection methods, GetConstructors() defaults to returning instance constructors, so you do not need to set the Instance flag for this method.

Notes