mscorlib(4.0.0.0) API with additions
IRootDesigner.cs
2 
4 {
6  [ComVisible(true)]
7  public interface IRootDesigner : IDesigner, IDisposable
8  {
12  {
13  get;
14  }
15 
20  object GetView(ViewTechnology technology);
21  }
22 }
Provides support for root-level designer view technologies.
Definition: IRootDesigner.cs:7
Provides a mechanism for releasing unmanaged resources.To browse the .NET Framework source code for t...
Definition: IDisposable.cs:8
Definition: __Canon.cs:3
ViewTechnology [] SupportedTechnologies
Gets the set of technologies that this designer can support for its display.
object GetView(ViewTechnology technology)
Gets a view object for the specified view technology.
ViewTechnology
Defines identifiers for a set of technologies that designer hosts support.
Provides the basic framework for building a custom designer.
Definition: IDesigner.cs:7