📄 fr_e_html2_editors.pas
字号:
{******************************************}
{ }
{ FastReport v2.5 }
{ HTML export filter }
{ Property Editors }
{ }
{ Copyright (c) 2003 by Kirichenko V.A. }
{ http://fr2html.narod.ru, fr2html@mail.ru }
{ }
{******************************************}
unit FR_E_HTML2_EDITORS;
interface
{$I Fr.inc}
uses
{$IFDEF Delphi6}
DesignIntf, DesignEditors;
{$ELSE}
DsgnIntf;
{$ENDIF}
type
THNavigatorProperty = class(TClassProperty)
public
function GetAttributes: TPropertyAttributes; override;
end;
implementation
uses
FR_E_HTML2;
{ THNavigatorProperty }
function THNavigatorProperty.GetAttributes: TPropertyAttributes;
begin
Result := [paMultiSelect, paSubProperties, paReadOnly];
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -