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

44ed313b dbe0 009d d8ca 1e21571e65d2

haplokuon edited this page May 6, 2023 · 1 revision

Item Property

netDxf 3.0.0 Library

Gets or sets the entity at the specified index.

Definition

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

C#

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

VB

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

C++

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

F#

abstract Item : EntityObject with get, set
override Item : EntityObject with get, set

Parameters

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

Return Value

EntityObject
The entity at the specified index.

Implements

IList(T).Item(Int32)

See Also

Reference

EntityCollection Class
netDxf.Collections Namespace

Clone this wiki locally