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




Gets or sets the current value in the NumericTextBox

Syntax

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

Property Value

The current value in the NumericTextBox

Remarks

If a value isn't entered it defaults to the MinimumAllowed value.

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