NumericUpDown

Wisej.Web.NumericUpDown

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.1.0.0)

Represents a spinner control that displays numeric values.

public class NumericUpDown : UpDownBase, ISupportInitialize, INotifyPropertyChanged

Constructors

Initializes a new instance of the NumericUpDown class.

Properties

Int32: Returns or sets the number of decimal places to display in the spin box (also known as an up-down control). (Default: 0)

Throws:

Boolean: Returns or sets whether the spin box (also known as an up-down control) should display the value it contains in hexadecimal format. (Default: False)

Decimal: Returns or sets the value to increment or decrement the spin box (also known as an up-down control) when the up or down buttons are clicked. (Default: 1)

Throws:

Decimal: Returns or sets the maximum value for the spin box (also known as an up-down control). (Default: 100)

Decimal: Returns or sets the minimum allowed value for the spin box (also known as an up-down control). (Default: 0)

Nullable<Decimal>: Returns or sets the Value assigned to the spin box (also known as an up-down control) with the difference that when the text is empty it returns null.

This property should be used when the NumericUpDown may hold a null value and it's bound to a database nullable column. Throws:

String: Returns or sets a string to display after the value. (Default: "")

String: Returns or sets a string to display before the value. (Default: "")

Boolean: Returns or sets whether a thousands separator is displayed in the spin box (also known as an up-down control) when appropriate. (Default: False)

Decimal: Returns or sets the value assigned to the spin box (also known as an up-down control). (Default: 0)

Throws:

Events

EventHandler Fired when the Value property has been changed in some way.

Inherited By

NameDescription

Represents a NumericUpDown control that can be hosted in a DataGridViewNumericUpDownCell.

Implements

NameDescription

Bindable components implement this interface.

Controls that support drag & drop operations implement this interface.

Provides access to the LabelWrapper associated with the controls that implement this interface.

Provides access to the ReadOnly property for coontrols that support the read-only mode.

All wisej components implement this interface.

All wisej controls derived from the Control class must implement this interface.

Allows an object to serialize itself.

Last updated