ITreeDesigner Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides support for building a set of related custom designers.
public interface class ITreeDesigner : IDisposable, System::ComponentModel::Design::IDesigner
public interface class ITreeDesigner : System::ComponentModel::Design::IDesigner
public interface ITreeDesigner : IDisposable, System.ComponentModel.Design.IDesigner
public interface ITreeDesigner : System.ComponentModel.Design.IDesigner
type ITreeDesigner = interface
interface IDesigner
interface IDisposable
Public Interface ITreeDesigner
Implements IDesigner, IDisposable
Public Interface ITreeDesigner
Implements IDesigner
- Derived
- Implements
Remarks
The ITreeDesigner interface derives from the IDesigner interface and provides support for flexibly navigating a hierarchy of related designers. With this interface, a programmer can supply a number of designers for the component, with the appropriate one being determined dynamically.
This interface is a simple extension of its base class, adding just two properties for navigating a tree hierarchy: Children and Parent.
For an overview of creating design components, see Extending Design-Time Support.
Properties
Children |
Gets a collection of child designers. |
Component |
Gets the base component that this designer is designing. (Inherited from IDesigner) |
Parent |
Gets the parent designer. |
Verbs |
Gets a collection of the design-time verbs supported by the designer. (Inherited from IDesigner) |
Methods
Dispose() |
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. (Inherited from IDisposable) |
DoDefaultAction() |
Performs the default action for this designer. (Inherited from IDesigner) |
Initialize(IComponent) |
Initializes the designer with the specified component. (Inherited from IDesigner) |