trowrecordlistimp.inc
来自「TMS Component Pack V5.0包含了超过 280 个为 Delp」· INC 代码 · 共 26 行
INC
26 行
//************************************************************************************//
// File created automatically by GenerateRecords.xls //
// Do not modify by hand //
//************************************************************************************//
function TRowRecordList.GetItems(index: integer): TRowRecord;
begin
Result := TRowRecord (inherited Items[Index]);
end;
procedure TRowRecordList.SetItems(index: integer; const Value: TRowRecord);
begin
inherited Items[Index] := Value;
end;
function TRowRecordList.Add(aRecord: TRowRecord):integer;
begin
Result:=inherited Add(aRecord);
end;
procedure TRowRecordList.Insert(Index: Integer; ARecord:TRowRecord);
begin
inherited Insert(Index, ARecord);
end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?