ShowSpinner Property (InputNumber)
In This Topic
Gets or sets a value indicating whether the control displays spinner buttons to increment or decrement the value (the step property must be set to a non-zero value).
Syntax
'Declaration
<System.ComponentModel.DefaultValueAttribute(True)>
Public Property ShowSpinner As System.Boolean
'Usage
Dim instance As InputNumber
Dim value As System.Boolean
instance.ShowSpinner = value
value = instance.ShowSpinner
[System.ComponentModel.DefaultValue(true)]
public System.bool ShowSpinner {get; set;}
public read-write property ShowSpinner: System.Boolean;
System.ComponentModel.DefaultValueAttribute()
public function get,set ShowSpinner : System.boolean
[System.ComponentModel.DefaultValue(true)]
public: __property System.bool get_ShowSpinner();
public: __property void set_ShowSpinner(
System.bool value
);
[System.ComponentModel.DefaultValue(true)]
public:
property System.bool ShowSpinner {
System.bool get();
void set ( System.bool value);
}
See Also