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

f91c2919 3751 2831 f2a2 a0ef7ecb5fd3

haplokuon edited this page May 6, 2023 · 1 revision

Insert Method

netDxf 3.0.0 Library

Inserts an item to the list at the specified index.

Definition

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

C#

public void Insert(
	int index,
	string item
)

VB

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

C++

public:
virtual void Insert(
	int index, 
	String^ item
) sealed

F#

abstract Insert : 
        index : int * 
        item : string -> unit 
override Insert : 
        index : int * 
        item : string -> unit 

Parameters

  Int32
The zero-based index at which the item should be inserted.
  String
The object to insert into the list.

Implements

IList(T).Insert(Int32, T)

See Also

Reference

SupportFolders Class
netDxf.Collections Namespace

Clone this wiki locally