Vcl.Grids.TCustomGrid.DeleteRow

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DeleteRow(ARow: Longint); virtual;

C++

virtual void __fastcall DeleteRow(int ARow);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids TCustomGrid

Description

Deletes a specified from the grid.

Call DeleteRow to remove a row from the middle of the grid. Provide the index of the row to remove as ARow. To remove the last row from the grid, set the RowCount property instead.

See Also