Accusoft.Forms1 - Updated
Item(Int32) Property



Accusoft.FormDirectorSdk Namespace > DataItemCollection Class > Item Property : Item(Int32) Property
The zero-based index in the collection to get or set.
Gets or sets the element at the given index.
Syntax
Public Overloads Property Item( _
   ByVal index As Integer _
) As DataItem
Dim instance As DataItemCollection
Dim index As Integer
Dim value As DataItem
 
instance.Item(index) = value
 
value = instance.Item(index)
public DataItem Item( 
   int index
) {get; set;}
public:
property DataItem^ Item {
   DataItem^ get(int index);
   void set (int indexDataItem^ value);
}

Parameters

index
The zero-based index in the collection to get or set.
Remarks

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

You can indicate the element you are interested in with an integer. The index should be a zero-based index to the element in the collection.

See Also

Reference

DataItemCollection Class
DataItemCollection Members
Overload List
GetIndexOfType Method