Aracılığıyla paylaş


IGridProvider.RowCount Özellik

Tanım

Kılavuzdaki toplam satır sayısını alır.

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

Özellik Değeri

Kılavuzdaki toplam satır sayısı.

Örnekler

Aşağıdaki örnek kod özellik değerini döndürür.

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

Açıklamalar

Gizli satırlar ve sütunlar, sağlayıcı uygulamasına bağlı olarak mantıksal ağaçta yüklenebilir ve bu nedenle ve ColumnCount özelliklerine RowCount yansıtılır. Gizli satırlar ve sütunlar henüz yüklenmediyse bunlar sayılmaz.

Şunlara uygulanır

Ayrıca bkz.