ObservableCollectionTInsert Method
|
Inserts an object into the collection at the specified index.
Namespace:
DXFReaderNET.Collections
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public void Insert(
int index,
T item
)
Public Sub Insert (
index As Integer,
item As T
)
public:
void Insert(
int index,
T item
)
member Insert :
index : int *
item : 'T -> unit
METHOD Insert(
index AS LONG,
item AS T
) AS VOID
Parameters
- index
- Type: SystemInt32
The zero-based index at which item should be inserted. - item
- Type: T
The object to insert. The value can not be null.
Return Value
Type:
True if the object has been inserted to the collection; otherwise, false.
See Also