tcelllistimp.inc

来自「TMS Component Pack Pro v4.2」· INC 代码 · 共 26 行

INC
26
字号
//************************************************************************************//
//  File created automatically by GenerateRecords.xls                                 //
//  Do not modify by hand                                                             //
//************************************************************************************//

function TCellList.GetItems(index: integer): TCellRecordList;
begin
  Result := TCellRecordList (inherited Items[Index]);
end;

procedure TCellList.SetItems(index: integer; const Value: TCellRecordList);
begin
  inherited Items[Index] := Value;
end;

function TCellList.Add(aRecord: TCellRecordList):integer;
begin
  Result:=inherited Add(aRecord);
end;

procedure TCellList.Insert(Index: Integer; ARecord:TCellRecordList);
begin
  inherited Insert(Index, ARecord);
end;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?