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

8654ce2b c34d 8cb2 d283 a44e217f6cde

haplokuon edited this page May 6, 2023 · 1 revision

Item Property

netDxf 3.0.0 Library

Gets or sets the object at the specified index.

Definition

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

C#

public T this[
	int index
] { get; set; }

VB

Public Default Property Item ( 
	index As Integer
) As T
	Get
	Set

C++

public:
virtual property T default[int index] {
	T get (int index) sealed;
	void set (int index, T value) sealed;
}

F#

abstract Item : 'T with get, set
override Item : 'T with get, set

Parameters

  Int32
The zero-based index of the element to get or set.

Return Value

T
The object at the specified index.

Implements

IList(T).Item(Int32)

See Also

Reference

ObservableCollection(T) Class
netDxf.Collections Namespace

Clone this wiki locally