Intersoft ClientUI Documentation
UXNumericUpDown Class
Members  See Also  Send Feedback
Intersoft.Client.UI.Aqua.UXInput Namespace : UXNumericUpDown Class






Represents a control that enables single value selection from a numeric range of values through a UXSpinner and UXTextBox.

Object Model

UXNumericUpDown Class

Syntax

Visual Basic (Declaration) 
Public Class UXNumericUpDown 
   Inherits Intersoft.Client.UI.Aqua.UXInput.UXUpDownBase(Of Nullable(Of Decimal))
   Implements IControlIFramework, ILicensing 
Visual Basic (Usage)Copy Code
Dim instance As UXNumericUpDown
C# 
public class UXNumericUpDown : Intersoft.Client.UI.Aqua.UXInput.UXUpDownBase<Nullable<decimal>>, IControlIFramework, ILicensing  
Delphi 
public class UXNumericUpDown = class(Intersoft.Client.UI.Aqua.UXInput.UXUpDownBase, IControl, IFramework, ILicensing)
JScript 
public class UXNumericUpDown extends Intersoft.Client.UI.Aqua.UXInput.UXUpDownBase implements IControlIFramework, ILicensing 
Managed Extensions for C++ 
public __gc class UXNumericUpDown : public Intersoft.Client.UI.Aqua.UXInput.UXUpDownBase<Nullable<decimal>>, IControlIFramework, ILicensing  
C++/CLI 
public ref class UXNumericUpDown : public Intersoft.Client.UI.Aqua.UXInput.UXUpDownBase<Nullable<decimal>>, IControlIFramework, ILicensing  

Remarks

UXNumericUpDown is a control that combines the UXCurrencyEditor control with UXButtonSpinner control to display numeric values. Since this control is a combination of several controls, these controls have similar characteristics as the control is used. To learn how to used UXCurrencyEditor, see UXCurrencyEditor Overview.

By default, the increment for this control is set to 1, you can change this value by setting the Increment property. You can also set the Maximum and Minimum property if you want a specific value that user can input or spin through the control. To disable users to input text into the control, you set the IsEditable property to false.

The following code shows how to create a simple UXNumericUpDown control with Minimum, Maximum and Increment property been set.

XAML Copy Code
<Grid>
    <Intersoft:UXNumericUpDown Width="100" Minimum="1" Maximum="100" Increment="5" />
</Grid>

Inheritance Hierarchy

System.Object
   System.Windows.DependencyObject
      System.Windows.UIElement
         System.Windows.FrameworkElement
            System.Windows.Controls.Control
               Intersoft.Client.Framework.ISControl
                  Intersoft.Client.UI.Aqua.UXInput.UXUpDownBase
                     Intersoft.Client.UI.Aqua.UXInput.UXUpDownBase<T>
                        Intersoft.Client.UI.Aqua.UXInput.UXNumericUpDown

Requirements

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

See Also

© 2012 All Rights Reserved.