LEADTOOLS Medical (Leadtools.Medical.Workstation assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
MinimumAllowed Property
See Also 
Leadtools.Medical.Workstation.UI Namespace > NumericTextBox Class : MinimumAllowed Property




Gets or sets the minimum value that can be entered into the NumericTextBox

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Allowed Values")>
<DescriptionAttribute("The minimum allowed value to be entered")>
Public Property MinimumAllowed As Integer
Visual Basic (Usage)Copy Code
Dim instance As NumericTextBox
Dim value As Integer
 
instance.MinimumAllowed = value
 
value = instance.MinimumAllowed
C# 
[CategoryAttribute("Allowed Values")]
[DescriptionAttribute("The minimum allowed value to be entered")]
public int MinimumAllowed {get; set;}
Managed Extensions for C++ 
[CategoryAttribute("Allowed Values")]
[DescriptionAttribute("The minimum allowed value to be entered")]
public: __property int get_MinimumAllowed();
public: __property void set_MinimumAllowed( 
   int value
);
C++/CLI 
[CategoryAttribute("Allowed Values")]
[DescriptionAttribute("The minimum allowed value to be entered")]
public:
property int MinimumAllowed {
   int get();
   void set (    int value);
}

Property Value

The minimum value that can be entered into the NumericTextBox

Remarks

The default minimum allowed value is -1000

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also