📄 tbaserecordlistimp.inc
字号:
//************************************************************************************//
// File created automatically by GenerateRecords.xls //
// Modified by hand to not include Items, because here it doesnt make sense
// (this is the base) and this can be called millons of times, we can save some seconds... //
//************************************************************************************//
{function TBaseRecordList.GetItems(index: integer): TBaseRecord;
begin
Result := inherited Items[Index] as TBaseRecord;
end;
procedure TBaseRecordList.SetItems(index: integer; const Value: TBaseRecord);
begin
inherited Items[Index] := Value;
end;
}
function TBaseRecordList.Add(aRecord: TBaseRecord):integer;
begin
Result:=inherited Add(aRecord);
end;
procedure TBaseRecordList.Insert(Index: Integer; ARecord:TBaseRecord);
begin
inherited Insert(Index, ARecord);
end;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -