NumIntf.pas
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:0k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit NumIntf;
  2. interface
  3. type
  4.   INumberProp = interface
  5.     ['{B36C5800-8E59-11D0-98D0-444553540000}']
  6.     function GetValue: Integer; stdcall;
  7.     procedure SetValue (New: Integer); stdcall;
  8.     procedure Increase; stdcall;
  9.     property Value: Integer
  10.       read GetValue write SetValue;
  11.   end;
  12. implementation
  13. end.
  14.