Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.21 KB | None | 0 0
  1. procedure DeleteRow(Grid: TStringGrid; ARow: Integer);
  2. var
  3.   i: Integer;
  4. begin
  5.   for i := ARow to Grid.RowCount - 2 do
  6.     Grid.Rows[i].Assign(Grid.Rows[i + 1]);
  7.   Grid.RowCount := Grid.RowCount - 1;
  8. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement