Intersoft ClientUI Documentation
LargeChange Property (UXTickBar)



Gets or sets a value used to calculate the placement of tick bar item in the tick bar. When tick bar is integrated to slider bar control, this property indicates a value to be added to or substracted from the value of the slider bar control.
Syntax
<CategoryAttribute("Common Properties")>
Public Property LargeChange As Double
Dim instance As UXTickBar
Dim value As Double
 
instance.LargeChange = value
 
value = instance.LargeChange
[CategoryAttribute("Common Properties")]
public double LargeChange {get; set;}
[CategoryAttribute("Common Properties")]
public:
property double LargeChange {
   double get();
   void set (    double value);
}

Property Value

UXTickBar will use the value of Minimum, Maximum, and LargeChange properties to calculate the number of tickbar items to be displayed.

The following example shows how to create a tick bar that renders five tickbar items that starts from 2 and ends at 10. The value of LargeChange property determines the position where each tickbar item will be rendered with respect of Minimum and Maximum value.

View
Copy Code
<Intersoft:UXTickBar Minimum="2" Maximum="10" LargeChange="2">
</Intersoft: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