FastReport_FMX_2.8.12/Source/FMXfrxRegTee.pas

38 lines
831 B
ObjectPascal
Raw Normal View History

2024-01-10 21:50:38 +01:00
{******************************************}
{ }
{ FastReport v4.0 }
{ Registration unit }
{ }
{ Copyright (c) 1998-2008 }
{ by Alexander Tzyganenko, }
{ Fast Reports Inc. }
{ }
{******************************************}
unit FMXfrxRegTee;
{$I frx.inc}
interface
procedure Register;
implementation
uses
System.SysUtils, System.Classes, System.UITypes, FMX.Controls, FMX.Forms, FMX.Types,
DesignIntf, DesignEditors,
FMX.frxChart;
procedure Register;
begin
RegisterComponents('FastReport 2.0 FMX',
[TfrxChartObject]);
//GroupDescendentsWith(TfrxChartObject, TControl);
end;
end.