Delphi StringGrid使用全书1

发表于:2008-05-19来源:作者:点击数: 标签:StringGridDELPHIDelphidelphi
关键字:Delphi StringGridStringGrid行列的增加和删除
type
TExCell = class(TStringGrid)

public
procedure DeleteRow(ARow: Longint);
procedure DeleteColumn(ACol: Longint);
procedure InsertRow(ARow: LongInt);
procedure InsertColumn(ACol: LongInt);
end;

procedure TExCell.InsertColumn(ACol: Integer);
begin
ColCount :=ColCount +1;
MoveColumn(ColCount-1, ACol);
end;

procedure TExCell.InsertRow(ARow: Integer);
begin
RowCount :=RowCount +1;

原文转自:http://www.ltesting.net