FastReport_2022_VCL/Source/frxRegTee.pas

43 lines
829 B
ObjectPascal
Raw Normal View History

2024-01-01 16:13:08 +01:00
{******************************************}
{ }
{ FastReport VCL }
{ Registration unit }
{ }
{ Copyright (c) 1998-2021 }
{ by Fast Reports Inc. }
{ }
{******************************************}
unit frxRegTee;
{$I frx.inc}
interface
procedure Register;
implementation
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
{$IFNDEF Delphi6}
DsgnIntf,
{$ELSE}
DesignIntf, DesignEditors,
{$ENDIF}
frxChart;
procedure Register;
begin
RegisterComponents('FastReport VCL',
[TfrxChartObject]);
{$IFDEF DELPHI16}
//GroupDescendentsWith(TfrxChartObject, TControl);
{$ENDIF}
end;
end.