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

TcxCustomRTTIInspector.OnFilterPropertyEx Event

In This Article

Occurs when the runtime object inspector is being populated with the inspected component’s properties.

#Declaration

Delphi
property OnFilterPropertyEx: TcxFilterPropertyEvent read; write;

#Remarks

Use this event if you need to filter a set of properties for editing in the runtime object inspector.

Sender specifies the TcxCustomRTTIInspector descendant instance.

PropertyName returns the full name of the inspected object’s current property. For example, while the OnFilterProperty event’s PropertyName returns value “akLeft“, the OnFilterPropertyEx‘s PropertyName returns “Anchors.akLeft“.

Accept specifies whether the PropertyName parameter’s value will be inspected. If the Accept parameter is False, the PropertyName parameter won’t be inspected.

See Also