Summary
Access to the Timer object.
Syntax
public Timer Timer{ get; }
Example 1
protected override void OnStart() { Timer.Start(1);//start timer with 1 second interval } protected override void OnTimer() { ChartObjects.DrawText("time", Time.ToString("HH:mm:ss"), StaticPosition.TopLeft); }