Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

906311ed d45d aef5 300a d8ae01934ad2

haplokuon edited this page May 6, 2023 · 1 revision

Insert Method

netDxf 3.0.0 Library

Inserts an entity into the collection at the specified index.

Definition

Namespace: netDxf.Collections
Assembly: netDxf (in netDxf.dll) Version: 3.0.0

C#

public void Insert(
	int index,
	EntityObject item
)

VB

Public Sub Insert ( 
	index As Integer,
	item As EntityObject
)

C++

public:
void Insert(
	int index, 
	EntityObject^ item
)

F#

member Insert : 
        index : int * 
        item : EntityObject -> unit 

Parameters

  Int32
The zero-based index at which item should be inserted.
  EntityObject
The entity to insert. The value can not be null.

See Also

Reference

EntityCollection Class
netDxf.Collections Namespace

Clone this wiki locally