DataGrid.VisibleRowCount Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the number of rows visible.
public:
property int VisibleRowCount { int get(); };
[System.ComponentModel.Browsable(false)]
public int VisibleRowCount { get; }
[<System.ComponentModel.Browsable(false)>]
member this.VisibleRowCount : int
Public ReadOnly Property VisibleRowCount As Integer
Property Value
The number of rows visible in the viewport. The viewport is the rectangular area through which the grid is visible. The size of the viewport depends on the size of the DataGrid control; if you allow users to resize the control, the viewport will also be affected.
- Attributes
Examples
The following code example returns the number of rows visible in a System.Windows.Forms.DataGrid control.
Private Function ReturnVisibleRows(ByVal myGrid As DataGrid)As Integer
ReturnVisibleRows = myGrid.VisibleRowCount
End Function
Remarks
The number of visible rows can be changed at run time if the user is allowed to resize the System.Windows.Forms.DataGrid control.