IDesignerFilter.PostFilterEvents(IDictionary) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When overridden in a derived class, allows a designer to change or remove items from the set of events that it exposes through a TypeDescriptor.
public:
void PostFilterEvents(System::Collections::IDictionary ^ events);
public void PostFilterEvents (System.Collections.IDictionary events);
abstract member PostFilterEvents : System.Collections.IDictionary -> unit
Public Sub PostFilterEvents (events As IDictionary)
Parameters
- events
- IDictionary
The EventDescriptor objects that represent the events of the class of the component. The keys in the dictionary of events are event names.
Remarks
This method provides a way to change or remove items within the dictionary of events that are exposed through a TypeDescriptor.
The keys in the dictionary of events are the names of the events. The objects are of type EventDescriptor. This method is called immediately after PreFilterEvents.
Notes to Implementers
You can directly filter the dictionary that is accessible through the events
parameter, or you can leave it unchanged. If you are overriding this method, call the base implementation after you perform your own filtering.