| 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 NumericTextBoxIf a value isn't entered it defaults to the MinimumAllowed value.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code