IGridProvider.RowCount Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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à
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.