⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rm_tntrichedit.pas

📁 这是一个功能强大
💻 PAS
字号:

{*****************************************}
{                                         }
{         Report Machine v2.0             }
{           Rich Add-In Object            }
{                                         }
{*****************************************}

unit RM_TntRichEdit;

interface

{$I RM.inc}
uses
  SysUtils, Windows, Messages, Classes, Graphics, Controls, Menus,
  Forms, RM_RichEdit
{$IFDEF USE_INTERNAL_JVCL}, rm_JvInterpreter{$ELSE}, JvInterpreter{$ENDIF};

type
  { TRMTntRichView }
  TRMTntRichView = class(TRMRichView)
  private
  protected
  public
    constructor Create; override;
    destructor Destroy; override;
  published
  end;

implementation

{------------------------------------------------------------------------------}
{------------------------------------------------------------------------------}
{TRMTntRichView}

constructor TRMTntRichView.Create;
begin
  inherited Create;
  BaseName := 'TntRich';
end;

destructor TRMTntRichView.Destroy;
begin
  inherited Destroy;
end;

const
	cRM = 'RM_RichEdit';

procedure RM_RegisterRAI2Adapter(RAI2Adapter: TJvInterpreterAdapter);
begin
  with RAI2Adapter do
  begin
    AddClass(cRM, TRMTntRichView, 'TRMTntRichView');
  end;
end;


initialization
  RM_RegisterRAI2Adapter(GlobalJvInterpreterAdapter);

finalization

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -