home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / Chip_2003-01_cd1.bin / zkuste / delphi / kolekce / d567 / FLEXCEL.ZIP / FlexCel / TExcelBandListImp.inc < prev    next >
Encoding:
Text File  |  2002-09-26  |  842 b   |  26 lines

  1. //************************************************************************************//
  2. //  File created automatically by GenerateRecords.xls                                 //
  3. //  Do not modify by hand                                                             //
  4. //************************************************************************************//
  5.  
  6. function TExcelBandList.GetItems(index: integer): TExcelBand;
  7. begin
  8.   Result := inherited Items[Index] as TExcelBand;
  9. end;
  10.  
  11. procedure TExcelBandList.SetItems(index: integer; const Value: TExcelBand);
  12. begin
  13.   inherited Items[Index] := Value;
  14. end;
  15.  
  16. function TExcelBandList.Add(aBand: TExcelBand):integer;
  17. begin
  18.   Result:=inherited Add(aBand);
  19. end;
  20.  
  21. procedure TExcelBandList.Insert(Index: Integer; ABand:TExcelBand);
  22. begin
  23.   inherited Insert(Index, ABand);
  24. end;
  25.  
  26.