C# Class Habanero.Faces.Win.NumericUpDownEditingControl

A control for editing numeric values
Inheritance: System.Windows.Forms.NumericUpDown, IDataGridViewEditingControl
Show file Open project: Chillisoft/habanero.faces Class Usage Examples

Public Methods

Method Description
ApplyCellStyleToEditingControl ( System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle ) : void

Copy the styles from the object provided across to this editing control

EditingControlWantsInputKey ( Keys key, bool dataGridViewWantsInputKey ) : bool

Indicates if the editing control wants the input key specified

GetEditingControlFormattedValue ( DataGridViewDataErrorContexts context ) : object

Returns the value being held in the editing control

NumericUpDownEditingControl ( ) : System

Constructor to initialise a new editing control with the default numeric format of 2 decimal places.

PrepareEditingControlForEdit ( bool selectAll ) : void

Prepares the editing control for editing

Protected Methods

Method Description
OnValueChanged ( EventArgs eventargs ) : void

A handler to carry out repercussions of a changed value

Method Details

ApplyCellStyleToEditingControl() public method

Copy the styles from the object provided across to this editing control
public ApplyCellStyleToEditingControl ( System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle ) : void
dataGridViewCellStyle System.Windows.Forms.DataGridViewCellStyle The source to copy from
return void

EditingControlWantsInputKey() public method

Indicates if the editing control wants the input key specified
public EditingControlWantsInputKey ( Keys key, bool dataGridViewWantsInputKey ) : bool
key Keys The key in question
dataGridViewWantsInputKey bool Whether the DataGridView /// wants the input key
return bool

GetEditingControlFormattedValue() public method

Returns the value being held in the editing control
public GetEditingControlFormattedValue ( DataGridViewDataErrorContexts context ) : object
context DataGridViewDataErrorContexts
return object

NumericUpDownEditingControl() public method

Constructor to initialise a new editing control with the default numeric format of 2 decimal places.
public NumericUpDownEditingControl ( ) : System
return System

OnValueChanged() protected method

A handler to carry out repercussions of a changed value
protected OnValueChanged ( EventArgs eventargs ) : void
eventargs System.EventArgs Arguments relating to the event
return void

PrepareEditingControlForEdit() public method

Prepares the editing control for editing
public PrepareEditingControlForEdit ( bool selectAll ) : void
selectAll bool Whether to select all the content first, /// which can make it easier to replace as you type
return void