📄 softdatatype.pas
字号:
unit SoftDataType;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls;
type
TSoftDataType = class(TComponent)
private
FConnStr: string;
{ Private declarations }
public
{ Public declarations }
procedure FSetConn(AValue: string);
function FGetConn: string;
property Conn: string read FGetConn write FSetConn;
end;
implementation
{ TSoftDataType }
function TSoftDataType.FGetConn: string;
begin
Result := FConnStr;
end;
procedure TSoftDataType.FSetConn(AValue: string);
begin
FConnStr := AValue;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -