Intersoft ClientUI Documentation
AutoUpdate Property



Gets or sets a value that determines whether the control should update the value to actual time.
Syntax
<CategoryAttribute("Common Properties")>
Public Property AutoUpdate As Boolean
Dim instance As UXClock
Dim value As Boolean
 
instance.AutoUpdate = value
 
value = instance.AutoUpdate
[CategoryAttribute("Common Properties")]
public bool AutoUpdate {get; set;}
[CategoryAttribute("Common Properties")]
public:
property bool AutoUpdate {
   bool get();
   void set (    bool 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