This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 416
b9de5bd8 3c39 42d3 30c1 8895f0027bc5
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Searches for the specified entity and returns the zero-based index of the first occurrence within the entire collection.
Namespace: netDxf.Collections
Assembly: netDxf (in netDxf.dll) Version: 3.0.0
C#
public int IndexOf(
EntityObject item
)
VB
Public Function IndexOf (
item As EntityObject
) As Integer
C++
public:
virtual int IndexOf(
EntityObject^ item
) sealed
F#
abstract IndexOf :
item : EntityObject -> int
override IndexOf :
item : EntityObject -> int
- EntityObject
- The entity to locate in the collection.
Int32
The zero-based index of the first occurrence of item within the entire collection, if found; otherwise, –1.
IList(T).IndexOf(T)