Accusoft.FormDirector3.Net - Updated
Item(Int32) Property




Accusoft.FormDirectorSdk Namespace > FieldCollection Class > Item Property : Item(Int32) Property
The index in the collection to get or set.
Gets or sets the element at the given index.
Syntax
'Declaration
 
Public Overloads Property Item( _
   ByVal index As Integer _
) As Field
'Usage
 
Dim instance As FieldCollection
Dim index As Integer
Dim value As Field
 
instance.Item(index) = value
 
value = instance.Item(index)
public Field Item( 
   int index
) {get; set;}
public: __property Field* get_Item( 
   int index
);
public: __property void set_Item( 
   int index,
   Field* value
);
public:
property Field^ Item {
   Field^ get(int index);
   void set (int indexField^ value);
}

Parameters

index
The index in the collection to get or set.
Remarks

This method implements a standard collection operation. It is the principle method you will use to read or change elements in the collection. You can read or modify any element in the collection with this method.

See Also

Reference

FieldCollection Class
FieldCollection Members
Overload List
GetIndexOfName Method