Skip to main content

TcxPropertyEditor.GetProperties(TComponent,TcxGetPropEditProc) Method

Provides the subproperties of the edited property to the Proc callback method.

Declaration

procedure GetProperties(AOwner: TComponent; Proc: TcxGetPropEditProc); virtual;

Parameters

Name Type
AOwner TComponent
Proc TcxGetPropEditProc

Remarks

If the edited property has subproperties the GetProperties method provides these subproperties to the Proc method. The GetProperties method is called when the runtime object inspector creates rows for the edited properties. The runtime object inspector invokes this method if the appropriate GetAttributes method of the current property editor returns ipaSubProperties flag. The GetProperties method has empty implementation. Descendants override the GetProperties method in that way they create appropriate editors for the subproperties and pass them to the Proc method.

The AOwner parameter is the form where controls placed in.

The Proc parameter is a pointer to the callback method.

See Also