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






In This Topic
    Max Property (InputNumber)
    In This Topic
    Gets or sets the largest number that the user can enter.
    Syntax
    'Declaration
     
    
    <JsonAttribute(2)>
    Public Property Max As System.Nullable(Of Double)
    'Usage
     
    
    Dim instance As InputNumber
    Dim value As System.Nullable(Of Double)
     
    instance.Max = value
     
    value = instance.Max
    [Json(2)]
    public System.Nullable<double> Max {get; set;}
    public read-write property Max: System.Nullable; 
    JsonAttribute(2)
    public function get,set Max : System.Nullable
    [Json(2)]
    public: __property System.Nullable<double> get_Max();
    public: __property void set_Max( 
       System.Nullable<double> value
    );
    [Json(2)]
    public:
    property System.Nullable<double> Max {
       System.Nullable<double> get();
       void set (    System.Nullable<double> value);
    }
    See Also