WizardInitializeArgs Constructor
See Also 
SourceCode.Framework Namespace > WizardInitializeArgs Class : WizardInitializeArgs Constructor



parent
The parent object can be either the object the wizard is dropped on or the object it is configuring.
delayedExecution
When true the execution of a wizard is delayed.
insertIndex

Glossary Item Box

Initialized a new instance of the SourceCode.Workflow.WizardFramework.WizardInitializeArgs class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal parent As Object, _
   ByVal delayedExecution As Boolean, _
   ByVal insertIndex As Integer _
)
Visual Basic (Usage)Copy Code
Dim parent As Object
Dim delayedExecution As Boolean
Dim insertIndex As Integer
 
Dim instance As New WizardInitializeArgs(parent, delayedExecution, insertIndex)
C# 
public WizardInitializeArgs( 
   object parent,
   bool delayedExecution,
   int insertIndex
)
C++/CLI 
public:
WizardInitializeArgs( 
   Object^ parent,
   bool delayedExecution,
   int insertIndex
)

Parameters

parent
The parent object can be either the object the wizard is dropped on or the object it is configuring.
delayedExecution
When true the execution of a wizard is delayed.
insertIndex

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also