UpDown editor to edit numeric values

Namespace: Dapfor.Net.Editors
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
public class UpDownNumericEditor : UITypeEditorEx
Visual Basic
Public Class UpDownNumericEditor
	Inherits UITypeEditorEx
Visual C++
public ref class UpDownNumericEditor : public UITypeEditorEx
F#
type UpDownNumericEditor =  
    class
        inherit UITypeEditorEx
    end

Examples

 Copy imageCopy
public void InitializeGrid(Grid grid)
{
    Column column = grid.Headers[0]["SomeColumn"];
    column.Editor = new UpDownNumericEditor();
}

Inheritance Hierarchy

System..::..Object
  System.Drawing.Design..::..UITypeEditor
    Dapfor.Net.Editors..::..UITypeEditorEx
      Dapfor.Net.Editors..::..UpDownNumericEditor

See Also