Allows a designer to filter the set of events the component it is designing will expose through the TypeDescriptor object.
[Visual Basic] Sub PostFilterEvents( _ ByVal events As IDictionary _ ) [C#] void PostFilterEvents( IDictionary events ); [C++] void PostFilterEvents( IDictionary* events ) = 0; [JScript] function PostFilterEvents( events : IDictionary );
The augmented set of events.
This method is called immediately after its corresponding "Pre" method. If you are overriding this method, call the the base implementation after you perform your own filtering.If the method does not modify any events, it may just return a reference to its input parameter. If you do make a change to the events, you must create a new array.
IDesignerFilter Interface | IDesignerFilter Members | System.ComponentModel.Design Namespace | System.ComponentModel.Design.ITypeDescriptorService.FilterEvents