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