IDataItemContainer.DisplayIndex プロパティ

定義

実装時、コントロールに表示されるデータ項目の位置を取得します。

public:
 property int DisplayIndex { int get(); };
public int DisplayIndex { get; }
member this.DisplayIndex : int
Public ReadOnly Property DisplayIndex As Integer

プロパティ値

コントロールに表示されるデータ項目の位置を表す Integer

次のコード例は、 プロパティの実装を DisplayIndex 示しています。 これは、クラスの概要に関するトピックの大きな例の IDataItemContainer 一部です。

int IDataItemContainer.DisplayIndex
{
    get
    {
        return _itemIndex;
    }
}
ReadOnly Property DisplayIndex() As Integer Implements IDataItemContainer.DisplayIndex
    Get
        Return _itemIndex
    End Get
End Property

注釈

などの DataGridViewColumnクラスを実装する場合、 DisplayIndex プロパティは、表示される行の行のインデックスに従って設定されます。

適用対象

こちらもご覧ください