Return to Unit UltiboClasses
Description
To be documented
Class definitions
[Expand]
TTimerEx = class(TObject)
Note: TTimer/TFPTimer equivalent for Ultibo specific timers
|
|
constructor Create;
|
|
destructor Destroy; override;
|
|
private
|
FInterval:Integer;
|
|
FEnabled:Boolean;
|
|
FWorker:Boolean;
|
If True then use a Worker thread for the timer event
|
FOnTimer:TNotifyEvent;
|
|
FTimerHandle:TTimerHandle;
|
|
|
procedure SetEnabled(Value:Boolean);
|
|
protected
|
procedure Timer; virtual;
|
|
procedure StartTimer; virtual;
|
|
procedure StopTimer; virtual;
|
|
public
|
property Interval:Integer read FInterval write FInterval;
|
|
property Enabled:Boolean read FEnabled write SetEnabled;
|
|
property Worker:Boolean read FWorker write FWorker;
|
|
|
property OnTimer:TNotifyEvent read FOnTimer write FOnTimer;
|
|
Function declarations
[Expand]
constructor TTimerEx.Create;
Description: To be documented
[Expand]
destructor TTimerEx.Destroy;
Description: To be documented
[Expand]
procedure TTimerEx.SetEnabled(Value:Boolean);
Description: To be documented
[Expand]
procedure TTimerEx.Timer;
Description: To be documented
[Expand]
procedure TTimerEx.StartTimer;
Description: To be documented
[Expand]
procedure TTimerEx.StopTimer;
Description: To be documented
Return to Unit Reference