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