FastReport_FMX_2.8.12/Source/FMXfrxRegCtrls.pas

38 lines
865 B
ObjectPascal
Raw Permalink 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 FMXfrxRegCtrls;
{$I frx.inc}
//{$I frxReg.inc}
interface
procedure Register;
implementation
uses
System.SysUtils, System.Classes, FMX.Types, FMX.Controls, FMX.Forms, FMX.frxCtrls, FMX.frxFMX, FMX.frxDesgnCtrls;
procedure Register;
begin
RegisterComponents('FastReport FMX Controls 2.0',
[TfrxToolButton, TfrxToolSeparator, TfrxToolGrip, TfrxRuler, TfrxScrollBox, TfrxTreeView]);
end;
end.