Intersoft ClientUI Documentation
Ticks Property (UXTickBar)



Gets or sets the position of the tick bar items to display in the tick bar.
Syntax
<CategoryAttribute("Common Properties")>
Public Property Ticks As DoubleCollection
Dim instance As UXTickBar
Dim value As DoubleCollection
 
instance.Ticks = value
 
value = instance.Ticks
[CategoryAttribute("Common Properties")]
public DoubleCollection Ticks {get; set;}
[CategoryAttribute("Common Properties")]
public:
property DoubleCollection^ Ticks {
   DoubleCollection^ get();
   void set (    DoubleCollection^ value);
}
Remarks

By default, all tickbar items will be displayed in the calculated position based on the number of tickbar items and the available rendered area. In some cases, you might need to show some tickbar items and hide the others. In this case, you can specify which tickbar items to be displayed using Ticks property. For example, if you set Ticks property to 1, 5, 7, then the first, fifth, and seventh tickbar items will be displayed and the other tickbar items will be hidden.

XAML
Copy Code
<Intersoft:UXTickBar Ticks="1 5 7">
</Intersoft:UXTickBar>
            

Configuring Ticks in UXTickBar

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

UXTickBar Class
UXTickBar Members
UXTickBar

Send Feedback