IGridProvider.RowCount プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
グリッド内の行の合計数を取得します。
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反映されます。 非表示の行と列がまだ読み込まれていない場合、それらはカウントされません。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET