IDataItemContainer.DisplayIndex 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 position of the data item as displayed in a control.
public:
property int DisplayIndex { int get(); };
public int DisplayIndex { get; }
member this.DisplayIndex : int
Public ReadOnly Property DisplayIndex As Integer
Property Value
An Integer
representing the position of the data item as displayed in a control.
Examples
The following code example demonstrates an implementation of the DisplayIndex property. It is part of a larger example in the IDataItemContainer class overview topic.
int IDataItemContainer.DisplayIndex
{
get
{
return _itemIndex;
}
}
ReadOnly Property DisplayIndex() As Integer Implements IDataItemContainer.DisplayIndex
Get
Return _itemIndex
End Get
End Property
Remarks
In implementing classes such as DataGridViewColumn, the DisplayIndex property is set according to the index of the row among the displayed rows.