ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / InputNumber Class / Value Property






In This Topic
    Value Property (InputNumber)
    In This Topic
    Gets or sets the current value of the control.
    Syntax
    'Declaration
     
    
    <JsonAttribute(1)>
    <System.ComponentModel.DefaultValueAttribute(0)>
    Public Property Value As System.Nullable(Of Double)
    'Usage
     
    
    Dim instance As InputNumber
    Dim value As System.Nullable(Of Double)
     
    instance.Value = value
     
    value = instance.Value
    [Json(1)]
    [System.ComponentModel.DefaultValue(0)]
    public System.Nullable<double> Value {get; set;}
    public read-write property Value: System.Nullable; 
    JsonAttribute(1)
    System.ComponentModel.DefaultValueAttribute(0)
    public function get,set Value : System.Nullable
    [Json(1)]
    [System.ComponentModel.DefaultValue(0)]
    public: __property System.Nullable<double> get_Value();
    public: __property void set_Value( 
       System.Nullable<double> value
    );
    [Json(1)]
    [System.ComponentModel.DefaultValue(0)]
    public:
    property System.Nullable<double> Value {
       System.Nullable<double> get();
       void set (    System.Nullable<double> value);
    }
    See Also