ComponentDesigner.PostFilterEvents Method
Allows a designer to change or remove items from the set of events that it exposes through a TypeDescriptor.
[Visual Basic] Protected Overridable Sub PostFilterEvents( _ ByVal events As IDictionary _ ) [C#] protected virtual void PostFilterEvents( IDictionary events ); [C++] protected: virtual void PostFilterEvents( IDictionary* events ); [JScript] protected function PostFilterEvents( events : IDictionary );
Parameters
- events
- The events for the class of the component.
Remarks
This method provides a way to change or remove the 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 PropertyDescriptor. 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 override this method, call the base implementation after you perform your own filtering.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
.NET Framework Security:
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries From Partially Trusted Code
See Also
ComponentDesigner Class | ComponentDesigner Members | System.ComponentModel.Design Namespace | TypeDescriptor | IDesignerFilter