IDataItemContainer.DataItemIndex Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When implemented, gets the index of the data item bound to a control.
public:
property int DataItemIndex { int get(); };
public int DataItemIndex { get; }
member this.DataItemIndex : int
Public ReadOnly Property DataItemIndex As Integer
Property Value
An Integer
representing the index of the data item in the data source.
Examples
The following code example demonstrates an implementation of the DataItemIndex property. It is part of a larger example in the IDataItemContainer class overview topic.
int IDataItemContainer.DataItemIndex
{
get
{
return _itemIndex;
}
}
ReadOnly Property DataItemIndex() As Integer Implements IDataItemContainer.DataItemIndex
Get
Return _itemIndex
End Get
End Property
Remarks
In implementing classes such as FormView, GridViewRow, and DetailsView, the DataItemIndex property is used to determine the index of the data item bound to the control from the data source. The DataItemIndex property does not refer to the index of the data item as displayed by the data control.