IGridProvider.RowCount プロパティ

定義

グリッド内の行の合計数を取得します。

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

プロパティ値

グリッド内の行の合計数。

次のコード例では、 プロパティ値を返します。

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

注釈

プロバイダーの実装に応じて、非表示の行と列を論理ツリーに読み込むことができるため、 プロパティと ColumnCount プロパティにRowCount反映されます。 非表示の行と列がまだ読み込まれていない場合、それらはカウントされません。

適用対象

こちらもご覧ください