EasyLanguage Object Reference

NumericUpDown Class

Represents an up-down control (also known as a spin box) that displays numeric values.

Namespace: elsystem.windows.forms

[ Expand All ]
Properties
  Name

Type

Description
Public property DecimalPlaces

double

Gets or sets the number of decimal places to display in the up-down control.
Public property Increment

double

Gets or sets how much to increment or decrement Value when the up or down buttons are clicked.
Public property Maximum

double

Gets or sets the maximum value for the  up-down control.
Public property Minimum

double

Gets or sets the minimum allowed value for the  up-down control.

Public property TextAlign

object

Gets or sets the alignment of the text in for the  up-down control.

Public property Value

double

Gets or sets the value assigned to for the up-down control.

   Additional properties, methods, and events are described in the classes listed under Inheritance Hierarchy (see below).

Methods
  Name Description
Public property Create() Initializes a new instance of a numeric up-down control.
Public property Create(width,height) Initializes a new instance of a numeric up-down control.  Parameters include the Width and Height of the control.
Public property Create(value,minvalue,maxvalue) Initializes a new instance of a numeric up-down control.  Parameters include the initial Value, the Minimum value, and the Maximum value of the control.
Events
  Name Description
Public event ValueChanged Occurs when the Value property has been changed in some way. See EventArgs for the properties returned by the handler's args parameter.
Inheritance Hierarchy

elsystem.Object

  elsystem.windows.forms.Control

    elsystem.windows.forms.NumericUpDown