DicomObjects Reference
DicomObjects Reference / DicomAttributes Collection / ItemByIndex Property
The sequential index of the attribute to retrieve.
ItemByIndex Property
Description
Access DicomAttribute objects by sequential index
Property type
Read-only property
Syntax
Visual Basic
Public Property ItemByIndex( _
   ByVal Index As Integer _
) As DicomAttribute
Parameters
Index
The sequential index of the attribute to retrieve.
Remarks

Use of this property allows direct access to any of the Attributes of a DicomImage or DicomDataSet.

This property is provided for users of languages such as Delphi, which do not have iterators of the type available in Visual Basic.  It is therefore possible to iterate through all items in the collection using a simple integer counter.
The items returned by this property are indexed in ascending order of group and then element number

See Also