IGridProvider.ColumnCount Proprietà

Definizione

Ottiene il numero totale di colonne in una griglia.

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

Valore della proprietà

Numero totale di colonne in una griglia.

Esempio

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

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

Commenti

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

Si applica a

Vedi anche