FastReport_2022_VCL/LibD28x64/frxHTMLViewInPlaceEditor.pas
2024-01-01 16:13:08 +01:00

37 lines
875 B
ObjectPascal

{******************************************}
{ }
{ FastReport VCL }
{ PDFView InPlace Editor }
{ }
{ Copyright (c) 1998-2021 }
{ by Fast Reports Inc. }
{ }
{******************************************}
unit frxHTMLViewInPlaceEditor;
interface
{$I frx.inc}
uses
{$IFNDEF FPC}
Windows,
{$ENDIF}
Messages, SysUtils, Classes, Graphics, Controls,
frxClass, frxInPlaceEditors, frxDataLinkInPlaceEditor
{$IFDEF Delphi6}
, Variants
{$ENDIF};
implementation
uses frxHTML;
initialization
frxRegEditorsClasses.Register(TfrxHtmlView, [TfrxInPlaceDataLinkEditor], [[evDesigner]]);
finalization
frxUnregisterEditorsClass(TfrxHtmlView, TfrxInPlaceDataLinkEditor);
end.