ViewDescriptionCollection.InsertRange Method (Int32, ViewDescription[])
Inserts an array of ViewDescription objects into the collection at the specified index.
Namespace: Microsoft.ManagementConsole
Assembly: Microsoft.ManagementConsole (in Microsoft.ManagementConsole.dll)
Syntax
public void InsertRange(
int index,
ViewDescription[] items
)
public:
void InsertRange(
int index,
array<ViewDescription^>^ items
)
member InsertRange :
index:int *
items:ViewDescription[] -> unit
Public Sub InsertRange (
index As Integer,
items As ViewDescription()
)
Parameters
index
Type: System.Int32The zero-based index that specifies where to insert the array of view descriptions.
items
Type: Microsoft.ManagementConsole.ViewDescription[]The array of view descriptions to insert into the collection.
See Also
ViewDescriptionCollection Class
Microsoft.ManagementConsole Namespace
Return to top