IGridProvider.RowCount Propriété

Définition

Obtient le nombre total de lignes dans une grille.

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

Valeur de propriété

Nombre total de lignes dans une grille.

Exemples

L’exemple de code suivant retourne la valeur de propriété.

/// <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

Remarques

Les lignes et colonnes masquées, en fonction de l’implémentation du fournisseur, peuvent être chargées dans l’arborescence logique et sont donc répercutées dans les RowCount propriétés et ColumnCount . Si les lignes et colonnes masquées n’ont pas encore été chargées, elles ne sont pas comptabilisées.

S’applique à

Voir aussi