home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / Delphi1_And_Delphi2 / EXAMPLES / EXTENDED / UMETA.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-10-24  |  431 b   |  28 lines

  1. unit umeta;
  2.  
  3. interface
  4.  
  5. uses
  6.   WinTypes,WinProcs, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   ExtCtrls;
  8.  
  9. { Used to show a TeeChart in Metafile format inside a Delphi TImage control }
  10.  
  11. type
  12.   TFormMeta = class(TForm)
  13.     Image1: TImage;
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19.  
  20. var
  21.   FormMeta: TFormMeta;
  22.  
  23. implementation
  24.  
  25. {$R *.DFM}
  26.  
  27. end.
  28.