Class RadControlAnimationTimer
Provides a high-resolution timer for RadControl animations with shared timer optimization.
Inheritance
Inherited Members
Namespace: Telerik.WinControls
Assembly: Telerik.WinControls.dll
Syntax
public class RadControlAnimationTimer
Constructors
RadControlAnimationTimer()
Declaration
public RadControlAnimationTimer()
Properties
Interval
Gets or sets the timer interval in milliseconds.
Declaration
public int Interval { get; set; }
Property Value
System.Int32
The interval between timer ticks in milliseconds. |
IsRunning
Gets a value indicating whether the timer is currently running.
Declaration
public bool IsRunning { get; }
Property Value
System.Boolean
|
Methods
OnTick(EventArgs)
Raises the Tick event.
Declaration
protected void OnTick(EventArgs e)
Parameters
System.EventArgs
e
The event arguments. |
Start()
Starts the animation timer.
Declaration
public void Start()
Stop()
Stops the animation timer.
Declaration
public void Stop()
Suspend()
Suspends all animation timers temporarily.
Declaration
public static void Suspend()
Events
Tick
Occurs when the timer interval has elapsed.
Declaration
public event EventHandler Tick
Event Type
System.EventHandler
|