Skip to main content

BaseSpinEdit Class

Serves as the base for editors with spin buttons used to modify edit values.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v25.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public class BaseSpinEdit :
    PopupBaseEdit

Remarks

BaseSpinEdit serves as the base for editors that use spin buttons to increment or decrement values. Use the BaseSpinEdit.Properties property to access common settings for spin button editors.

The following code snippet creates a custom editor that derives from BaseSpinEdit:

using DevExpress.XtraEditors;

public class CustomSpinEditor : BaseSpinEdit {
    public override string EditorTypeName => "CustomSpinEditor";
}
See Also