GridSpinEditor
Represents a spin editor in RadGridView.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class GridSpinEditor : BaseGridEditor, IInputEditor, IValueEditor, ISupportInitialize
Inheritance: objectBaseInputEditorBaseGridEditorGridSpinEditor
Implements:
Inherited Members
Constructors
Initializes a new instance of the GridSpinEditor class.
public GridSpinEditor()
Properties
Gets or sets the number of decimal places to display in the editor.
public int DecimalPlaces { get; set; }
Gets a value indicating whether the editor value is modified.
public override bool IsModified { get; }
Overrides:
Gets or sets the maximum value that could be set in the editor.
public decimal MaxValue { get; set; }
Gets or sets the minimum value that could be set in the editor.
public decimal MinValue { get; set; }
Gets or sets the value which is added to/subtracted from the current value of the editor.
public decimal Step { get; set; }
Gets or sets a value indicating whether a thousands separator is displayed in the editor.
public bool ThousandsSeparator { get; set; }
Gets or sets the value.
public override object Value { get; set; }
The value.
Overrides:
Methods
Starts the editing process. Used internally in RadGridView.
public override void BeginEdit()
Overrides:
Creates a new editor element.
protected override RadElement CreateEditorElement()
a RadElement if successful
Overrides:
Finishes the editing process. Used internally in RadGridView.
Translates system key down events to the owner element.
Handles the key up events in the editor.
protected virtual void OnKeyUp(KeyEventArgs e)
A System.Windows.Forms.KeyEventArgs that contains the event data.
Validates the value currently entered in the editor.