InsertIndex Property
See Also 
SourceCode.Framework Namespace > WizardInitializeArgs Class : InsertIndex Property



Glossary Item Box

This property is used to specify an index into an arbitrary collection into which newly added objects must be inserted. This is used, for instance, in the case of an event wizard, where the wizard must insert newly created events into a specific index which was determined by the process designer and must be implemented by the wizard.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property InsertIndex As Integer
Visual Basic (Usage)Copy Code
Dim instance As WizardInitializeArgs
Dim value As Integer
 
value = instance.InsertIndex
C# 
public int InsertIndex {get;}
C++/CLI 
public:
property int InsertIndex {
   int get();
}

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