Visual Basic (Declaration) | |
---|---|
Public Property TickingMode As ClockTickingMode |
Visual Basic (Usage) | ![]() |
---|---|
Dim instance As UXClock Dim value As ClockTickingMode instance.TickingMode = value value = instance.TickingMode |
C# | |
---|---|
public ClockTickingMode TickingMode {get; set;} |
Delphi | |
---|---|
public read-write property TickingMode: ClockTickingMode; |
JScript | |
---|---|
public function get,set TickingMode : ClockTickingMode |
Managed Extensions for C++ | |
---|---|
public: __property ClockTickingMode get_TickingMode(); public: __property void set_TickingMode( ClockTickingMode value ); |
C++/CLI | |
---|---|
public: property ClockTickingMode TickingMode { ClockTickingMode get(); void set ( ClockTickingMode value); } |
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 | ![]() |
---|---|
<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 | ![]() |
---|---|
<Intersoft:UXClock x:Name="uxClock1" AutoUpdate="True" TickingMode="Second"/> |
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family