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




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

Syntax

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

Property Value

The maximum 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