HtmlControlDesigner.PreFilterEvents Method
.NET Framework 3.0
Sets the list of events that are exposed at design-time for the TypeDescriptor object for the component.
Namespace: System.Web.UI.Design
Assembly: System.Design (in system.design.dll)
Assembly: System.Design (in system.design.dll)
protected void PreFilterEvents ( IDictionary events )
protected override function PreFilterEvents ( events : IDictionary )
Not applicable.
Parameters
- events
An IDictionary that contains the names of the events of the component to expose.
The PreFilterEvents method provides a way to add items to or remove items from the dictionary of events that a designer exposes through a TypeDescriptor object.
The keys in the dictionary of events are the names of the events. The objects are of type PropertyDescriptor.
Notes to Inheritors: You can directly modify the dictionary that is accessible through events or you can leave the dictionary unchanged. If you are overriding the PreFilterEvents method, call the base implementation before you perform your own filtering.Community Additions
ADD
Show: