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

📄 s2.tools.ts2integerfield.pas

📁 轉載的程序應用框架
💻 PAS
字号:
unit S2.Tools.TS2IntegerField;

interface

uses
  S2.Tools.TS2Field, S2.Tools.IS2IntegerField;

type
  TS2IntegerField = class(TS2Field, IS2IntegerField)
  private
    Value: Integer;
  public  //  S2.Tools.IS2IntegerField
    function GetValue: Integer; virtual;
    procedure SetValue(const Value: Integer); virtual;  
  end;

implementation

{ TS2IntegerField }

function TS2IntegerField.GetValue: Integer;
begin
  Result := Value;
end;

procedure TS2IntegerField.SetValue(const Value: Integer);
begin
  Self.Value := Value;
end;

end.

⌨️ 快捷键说明

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