This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 411
c22851fa 5bdb 44b0 fe80 9e377c582235
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Inserts an object into the collection at the specified index.
Namespace: netDxf.Collections
Assembly: netDxf (in netDxf.dll) Version: 3.0.0
C#
public void Insert(
int index,
T item
)
VB
Public Sub Insert (
index As Integer,
item As T
)
C++
public:
void Insert(
int index,
T item
)
F#
member Insert :
index : int *
item : 'T -> unit
- Int32
- The zero-based index at which item should be inserted.
- T
- The object to insert. The value can not be null.
True if the object has been inserted to the collection; otherwise, false.