IGridItemProvider.Row Propiedad

Definición

Obtiene el número ordinal de la fila que contiene la celda o elemento.

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

Valor de propiedad

Int32

Número ordinal basado en cero que identifica la fila que contiene la celda o elemento.

Ejemplos

El código de ejemplo siguiente devuelve la propiedad , que se almacena en una variable interna.

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

Se aplica a

Consulte también