AttributeCollectionIndexOf Method
|
Searches for the specified attribute and returns the zero-based index of the first occurrence within the entire collection.
Namespace:
DXFReaderNET.Collections
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public int IndexOf(
Attribute item
)
Public Function IndexOf (
item As Attribute
) As Integer
public:
int IndexOf(
Attribute^ item
)
member IndexOf :
item : Attribute -> int
METHOD IndexOf(
item AS Attribute
) AS LONG
Parameters
- item
- Type: DXFReaderNET.EntitiesAttribute
The attribute to locate in the collection.
Return Value
Type:
Int32The zero-based index of the first occurrence of item within the entire collection, if found; otherwise, –1.
See Also