IGridProvider.ColumnCount Propriété

Définition

Obtient le nombre total de colonnes dans une grille.

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

Valeur de propriété

Nombre total de colonnes dans une grille.

Exemples

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

/// <summary>
/// Gets the count of columns in the grid.
/// </summary>
/// <remarks>
/// gridItems is a two-dimensional array containing columns
/// in the second dimension.
/// </remarks>
int IGridProvider.ColumnCount
{
    get 
    {
        return gridItems.GetUpperBound(1) + 1; ;  
    }
}
''' <summary>
''' Gets the count of columns in the grid.
''' </summary>
''' <remarks>
''' gridItems is a two-dimensional array containing columns
''' in the second dimension.
''' </remarks>
Private ReadOnly Property ColumnCount() As Integer Implements IGridProvider.ColumnCount
    Get
        Return gridItems.GetUpperBound(1) + 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 UI Automation et sont donc reflétées dans les RowCount propriétés etColumnCount. Si les lignes et colonnes masquées n’ont pas encore été chargées, elles ne seront pas comptabilisées.

S’applique à

Voir aussi