Closed AzzaAzza69 closed 4 years ago
as defined below, it returns the ROW NUMBER and not the number of rows shown in the grid:
function TKCustomGrid.GetVisibleRowCount: Integer; begin Result := LastVisibleRow; end;
It should read:
Result := LastVisibleRow - TopRow + 1
also same applies to GetVisibleColCount
Will be fixed.
as defined below, it returns the ROW NUMBER and not the number of rows shown in the grid:
It should read:
also same applies to GetVisibleColCount