Occurs when a wizard is being initiated.

Namespace: BlueCieloECM.InnoCielo.Meridian.Design
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public event EventHandler<CancelWizardLoadEventArgs> BeforeWizard
Visual Basic
Public Event BeforeWizard As EventHandler(Of CancelWizardLoadEventArgs)
Visual C++
public:
 event EventHandler<CancelWizardLoadEventArgs^>^ BeforeWizard {
	void add (EventHandler<CancelWizardLoadEventArgs^>^ value);
	void remove (EventHandler<CancelWizardLoadEventArgs^>^ value);
}

Remarks

Wizards are optional and the event occurs just before a wizard is shown, or just before it would have been shown. The most common use of wizards is for newly created documents. But a wizard can also be shown for existing objects, for example, when a document’s type is changed.

See Also