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 > FNumericTextBox Class : MinimumAllowed Property




Gets or sets the minimum allowed value that can be entered in the textbox.

Syntax

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

Property Value

The minimum allowed value. The default value is -1000.0

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