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

c22851fa 5bdb 44b0 fe80 9e377c582235

haplokuon edited this page May 6, 2023 · 1 revision

Insert Method

netDxf 3.0.0 Library

Inserts an object 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,
	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 

Parameters

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

Return Value

True if the object has been inserted to the collection; otherwise, false.

See Also

Reference

ObservableCollection(T) Class
netDxf.Collections Namespace

Clone this wiki locally