home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 October
/
Chip_2002-10_cd1.bin
/
zkuste
/
delphi
/
kolekce
/
d56
/
FLEXCEL.ZIP
/
XLSAdapter
/
Inc
/
TFormulaCacheImp.inc
< prev
next >
Wrap
Text File
|
2002-06-20
|
866b
|
26 lines
//************************************************************************************//
// File created automatically by GenerateRecords.xls //
// Do not modify by hand //
//************************************************************************************//
function TFormulaCache.GetItems(index: integer): TFormulaRecord;
begin
Result := inherited Items[Index] as TFormulaRecord;
end;
procedure TFormulaCache.SetItems(index: integer; const Value: TFormulaRecord);
begin
inherited Items[Index] := Value;
end;
function TFormulaCache.Add(aRecord: TFormulaRecord):integer;
begin
Result:=inherited Add(aRecord);
end;
procedure TFormulaCache.Insert(Index: Integer; ARecord:TFormulaRecord);
begin
inherited Insert(Index, ARecord);
end;