[CategoryAttribute("Current Value")]
[DescriptionAttribute("The maximum allowed value to be entered")]
public int Value {get; set;}
             
        
            
            'Declaration
 
<CategoryAttribute("Current Value")>
<DescriptionAttribute("The maximum allowed value to be entered")>
Public Property Value As Integer
             
        
            
            'Usage
 
Dim instance As NumericTextBox
Dim value As Integer
 
instance.Value = value
 
value = instance.Value
             
        
            
            [CategoryAttribute("Current Value")]
[DescriptionAttribute("The maximum allowed value to be entered")]
public: __property int get_Value();
public: __property void set_Value( 
   int value
);
             
        
            
            [CategoryAttribute("Current Value")]
[DescriptionAttribute("The maximum allowed value to be entered")]
public:
property int Value {
   int get();
   void set (    int value);
}