Advertisement
daniv1

Untitled

Apr 12th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. unit Label1;
  2.  
  3. interface
  4.  
  5. uses
  6. System.SysUtils, System.Classes, Vcl.Controls, Vcl.StdCtrls;
  7.  
  8. type
  9. TRandom = class(TLabel)
  10. private
  11. Fmin: Integer ;
  12. Fmax : integer;
  13. fgetMax : TNotifyEvent;
  14. { Private declarations }
  15. protected
  16. { Protected declarations }
  17. public
  18. { Public declarations }
  19. published
  20. { Published declarations }
  21. property min : Integer read Fmin Write Fmin;
  22. property max : Integer read Fmax write Fmax;
  23. property GetMax:TNotifyEvent read FgetMax write FGetMax;
  24.  
  25. end;
  26.  
  27. procedure Register;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement