EntityCollectionInsert Method
|
Inserts an
entity 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,
EntityObject item
)
Public Sub Insert (
index As Integer,
item As EntityObject
)
public:
void Insert(
int index,
EntityObject^ item
)
member Insert :
index : int *
item : EntityObject -> unit
METHOD Insert(
index AS LONG,
item AS EntityObject
) AS VOID
Parameters
- index
- Type: SystemInt32
The zero-based index at which item should be inserted. - item
- Type: DXFReaderNET.EntitiesEntityObject
The entity to insert. The value can not be null.
See Also