mscorlib(4.0.0.0) API with additions
IDesigner.cs
2 
4 {
6  [ComVisible(true)]
7  public interface IDesigner : IDisposable
8  {
12  {
13  get;
14  }
15 
19  {
20  get;
21  }
22 
24  void DoDefaultAction();
25 
28  void Initialize(IComponent component);
29  }
30 }
void DoDefaultAction()
Performs the default action for this designer.
void Initialize(IComponent component)
Initializes the designer with the specified component.
Provides a mechanism for releasing unmanaged resources.To browse the .NET Framework source code for t...
Definition: IDisposable.cs:8
Definition: __Canon.cs:3
DesignerVerbCollection Verbs
Gets a collection of the design-time verbs supported by the designer.
Definition: IDesigner.cs:19
Provides the base implementation for the T:System.ComponentModel.IComponent interface and enables obj...
Definition: Component.cs:9
Provides functionality required by all components.
Definition: IComponent.cs:13
Provides the basic framework for building a custom designer.
Definition: IDesigner.cs:7
Represents a collection of T:System.ComponentModel.Design.DesignerVerb objects.