This topic has not yet been rated - Rate this topic

wizardResult Enumeration

A constant specifying the results of the wizard.

Namespace: EnvDTE
Assembly: EnvDTE (in envdte.dll)

[GuidAttribute("D920605A-11DD-4A12-A8DC-10578BB08606")] 
public enum wizardResult
/** @attribute GuidAttribute("D920605A-11DD-4A12-A8DC-10578BB08606") */ 
public enum wizardResult
GuidAttribute("D920605A-11DD-4A12-A8DC-10578BB08606") 
public enum wizardResult
  Member name Description
wizardResultBackOut The user clicked the wizard's Back button, nullifying the changes made. 
wizardResultCancel The wizard's startup was canceled. 
wizardResultFailure The wizard failed to start. 
wizardResultSuccess The wizard started successfully. 
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
wizardResultBackOut behavior
If the user clicks the Back button on the first page of a wizard, then your wizard should return wizardResultBackOut from the IDTWizard.Execute method. The New Project and Add New Item dialog boxes, will redisplay themselves if this result is returned from the wizard.
Advertisement