SplitterItemsCollectionInsert Method |
Inserts the specified
SplitterItem in the collection at the specified
index location.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic void Insert(
int index,
SplitterItem item
)
Public Sub Insert (
index As Integer,
item As SplitterItem
)
public:
void Insert(
int index,
SplitterItem^ item
)
member Insert :
index : int *
item : SplitterItem -> unit
Parameters
- index
- Type: SystemInt32
The location in the collection to insert the SplitterItem. - item
- Type: Kettic.AspNet.ControlsSplitterItem
The SplitterItem to add to the collection.
Remarks
Use the Insert method to add a SplitterItem to the collection at
the index specified by the index parameter.
See Also