📄 frxdaceditor.pas
字号:
{******************************************}
{ }
{ FastReport v4.0 }
{ DAC components design editors }
{ }
// Created by: CoreLab
// E-mail: support@crlab.com
{ }
{******************************************}
unit frxDACEditor;
interface
{$I frx.inc}
uses
Windows, Classes, SysUtils, Forms, Dialogs, frxDACComponents, frxCustomDB,
frxDsgnIntf, frxRes
{$IFDEF Delphi6}
, Variants
{$ENDIF};
type
TfrxTableNameProperty = class(TfrxStringProperty)
public
function GetAttributes: TfrxPropertyAttributes; override;
procedure SetValue(const Value: String); override;
end;
implementation
{ TfrxTableNameProperty }
function TfrxTableNameProperty.GetAttributes: TfrxPropertyAttributes;
begin
Result := [paMultiSelect, paValueList, paSortList];
end;
procedure TfrxTableNameProperty.SetValue(const Value: String);
begin
inherited;
Designer.UpdateDataTree;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -