Intersoft ClientUI Documentation
Maximum Property (UXTickBar)



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

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