DataGrid::VisibleRowCount Property
.NET Framework (current version)
Gets the number of rows visible.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Property Value
Type: System::Int32The 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 System.Windows.Forms::DataGrid control; if you allow users to resize the control, the viewport will also be affected.
The number of visible rows can be changed at run time if the user is allowed to resize the System.Windows.Forms::DataGrid control.
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
.NET Framework
Available since 1.1
Available since 1.1
Show: