FormFix v6.0 for .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^ Item {
   Field^ get(int index);
   void set (int index, Field^ 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

Is this page helpful?
Yes No
Thanks for your feedback.