Intersoft ClientUI Documentation
PointerPosition Property (UXTickBar)



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

By default, the width and height of the pointer element is 1 pixel and 5 pixel respectively. The pointer can be positioned to Top, Left, Bottom, or Right using PointerPosition property.

View
Copy Code
<StackPanel Width="400" VerticalAlignment="Center">
    <Intersoft:UXTickBarItem Content="Item 1" PointerWidth="5" PointerHeight="10" />
    <Intersoft:UXTickBarItem Content="Item 2" PointerPosition="Left"/>
    <Intersoft:UXTickBarItem Content="Item 3" PointerPosition="Right"/>
    <Intersoft:UXTickBarItem Content="Item 4" PointerPosition="Top"/>
    <Intersoft:UXTickBarItem Content="Item 5" PointerPosition="Bottom"/>
</StackPanel>
            
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