Intersoft ClientUI Documentation
TickingMode Property



Gets or sets a value that determines the ticking behavior when AutoUpdate is set to True.
Syntax
Public Property TickingMode As ClockTickingMode
Dim instance As UXClock
Dim value As ClockTickingMode
 
instance.TickingMode = value
 
value = instance.TickingMode
public ClockTickingMode TickingMode {get; set;}
public:
property ClockTickingMode TickingMode {
   ClockTickingMode get();
   void set (    ClockTickingMode value);
}
Remarks

In UXClock, you can use AutoUpdate property to enable automatic update on UXClock value based on the current time. When this mode is enabled, UXClock will work like a general analog clock and the time will be automatically updated.

View
Copy Code
<Intersoft:UXClock x:Name="uxClock1" AutoUpdate="True"/>
            

By default when auto update mode is enabled, UXClock will use the milisecond update to update its display. You can customize the ticking mode to Second using TickingMode property.

View
Copy Code
<Intersoft:UXClock x:Name="uxClock1" AutoUpdate="True" TickingMode="Second"/>
            
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

UXClock Class
UXClock Members

Send Feedback