IGridItemProvider.Row プロパティ

定義

セルまたは項目を含む行の序数を取得します。

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

プロパティ値

セルまたは項目を含む行を識別する、0 から始まる序数。

次のコード例は、内部変数に格納されているプロパティを返します。

int IGridItemProvider.Row
{
    get 
    {
        return ItemRow;
    }
}
Private ReadOnly Property Row() As Integer Implements IGridItemProvider.Row
    Get
        Return ItemRow
    End Get
End Property

適用対象

こちらもご覧ください