TcxCustomRTTIInspector.OnFilterPropertyEx Event
Occurs when the runtime object inspector is being populated with the inspected component’s properties.
Declaration
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