Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxPropertyEditor.GetProperties(TComponent,TcxGetPropEditProc) Method

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

#Declaration

Delphi
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