IDataItemContainer.DataItemIndex Property

Definition

When implemented, gets the index of the data item bound to a control.

C#
public int DataItemIndex { get; }

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.

C#
int IDataItemContainer.DataItemIndex
{
    get
    {
        return _itemIndex;
    }
}

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.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also