IDTWizard Interface
This interface must be implemented in a component for it to act as a wizard.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
<GuidAttribute("E914BBE1-03A4-11D1-BBCD-00A0C90F2744")> _
Public Interface IDTWizard
[GuidAttribute("E914BBE1-03A4-11D1-BBCD-00A0C90F2744")]
public interface IDTWizard
[GuidAttribute(L"E914BBE1-03A4-11D1-BBCD-00A0C90F2744")]
public interface class IDTWizard
[<GuidAttribute("E914BBE1-03A4-11D1-BBCD-00A0C90F2744")>]
type IDTWizard = interface end
public interface IDTWizard
The IDTWizard type exposes the following members.
Methods
Name | Description | |
---|---|---|
Execute | Occurs when a wizard is launched from either the Add Item or the New Project dialog box. |
Top
Remarks
The IDTWizard interface allows you to create wizards that can appear in the AddProject and AddItem dialog boxes. When implemented, it provides one method, Execute, whose code executes when the wizard is activated.
There are additional requirements for creating wizards. For more information, see Walkthrough: Creating a Wizard.