Skip to main content
A newer version of this page is available. .
Row

CustomCellInplaceEditor.EditorType Property

Gets the type of the custom cell in-place editor.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v18.2.Core.dll

Declaration

CustomCellInplaceEditorType EditorType { get; }

Property Value

Type Description
CustomCellInplaceEditorType

A CustomCellInplaceEditorType enumeration value specifying the custom editor’s type.

Available values:

Name Description
CheckBox

Specifies that a WinForms CheckEdit (or WPF CheckEdit) editor is used for in-place editing of cell content.

ComboBox

Specifies that a WinForms ComboBoxEdit (or WPF ComboBoxEdit) editor is used for in-place editing of cell content.

DateEdit

Specifies that a WinForms DateEdit (or WPF DateEdit) editor is used for in-place editing of cell content.

Custom

Specifies that a custom editor is used for in-place editing of cell content.

To supply the required in-place editor, handle the SpreadsheetControl.CustomCellEdit event.

See Also