Condividi tramite


IGridProvider.RowCount Proprietà

Definizione

Ottiene il numero totale di righe in una griglia.

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

Valore della proprietà

Int32

Numero totale di righe in una griglia.

Esempio

Il codice di esempio seguente restituisce il valore della proprietà.

/// <summary>
/// Gets the count of rows in the grid.
/// </summary>
/// <remarks>
/// gridItems is a two-dimensional array containing rows in
/// the first dimension.
/// </remarks>
int IGridProvider.RowCount
{
    get 
    {
        return gridItems.GetUpperBound(0) + 1;  
    }
}
''' <summary>
''' Gets the count of rows in the grid.
''' </summary>
''' <remarks>
''' gridItems is a two-dimensional array containing rows in
''' the first dimension.
''' </remarks>
Private ReadOnly Property RowCount() As Integer Implements IGridProvider.RowCount
    Get
        Return gridItems.GetUpperBound(0) + 1
    End Get
End Property

Commenti

Le righe e le colonne nascoste, a seconda dell'implementazione del provider, possono essere caricate nell'albero logico e verranno quindi riflesse nelle RowCount proprietà e ColumnCount . Se le righe e le colonne nascoste non sono ancora state caricate, non verranno conteggiate.

Si applica a

Vedi anche