Inserts a
CustomPlaceHolder
object into the
CustomPlaceHolderCollection
at the specified index.Inserts a CustomPlaceHolder object into the CustomPlaceHolderCollection at the specified index.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.DescriptionAttribute("Inserts a CustomPlaceHolder object into the CustomPlaceHolderCollection at the specified index.")>
Public Sub Insert( _
ByVal index As System.Integer, _
ByVal value As NGroup _
) |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As NGroupCollection
Dim index As System.Integer
Dim value As NGroup
instance.Insert(index, value) |
C# | |
---|
[System.ComponentModel.DescriptionAttribute("Inserts a CustomPlaceHolder object into the CustomPlaceHolderCollection at the specified index.")]
public void Insert(
System.int index,
NGroup value
) |
JScript | |
---|
System.ComponentModel.DescriptionAttribute("Inserts a CustomPlaceHolder object into the CustomPlaceHolderCollection at the specified index.")
public function Insert(
index : System.int,
value : NGroup
); |
Managed Extensions for C++ | |
---|
[System.ComponentModel.DescriptionAttribute("Inserts a CustomPlaceHolder object into the CustomPlaceHolderCollection at the specified index.")]
public: void Insert(
System.int index,
NGroup* value
) |
C++/CLI | |
---|
[System.ComponentModel.DescriptionAttribute("Inserts a CustomPlaceHolder object into the CustomPlaceHolderCollection at the specified index.")]
public:
void Insert(
System.int index,
NGroup^ value
) |
Parameters
- index
- The zero-based index at which value is inserted.
- value
- The
CustomPlaceHolder
object to insert.
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