Items Property (Read Only)

Top  Previous  Next

Contains a collection of Fields objects.

 

VB.NET Syntax

 

[Fields =] Fields.Items

 

C# Syntax

 

[Fields =] Fields.Items;

 

 

Remarks

 

Use Items to get an specific field from the array. The Index parameter indicates the object's index in the collection, where 0 is the index of the first element and (count - 1) is the index of the last element.

Also, you can access an specific Field by its field name.

Use Items with the Count property to iterate through all the objects in the list.

 

See also Count and Name properties from Field class.