configobjectunit.pas
来自「工商收费系统,主要是管理非税收收入的费用的管理」· PAS 代码 · 共 24 行
PAS
24 行
unit ConfigObjectUnit;
interface
uses
Classes ;
type
TConfig = class(TObject )
private
FPath : string ;
// FBeginDate : String ;
// FEndDate : string ;
// FDepreValue : Double ;
published
property Path : String read FPath write FPath;
// property BeginDate : String read FBeginDate write FBeginDate;
// property EndDate : string read FEndDate write FEndDate;
// property DepreValue : Double read FDepreValue write FDepreValue;
end;
implementation
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?