Skip to main content
Row

CustomCellInplaceEditor.EditorType Property

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

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

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 to edit cell content.

ComboBox

Specifies that a WinForms ComboBoxEdit (or WPF ComboBoxEdit) editor is used to edit cell content.

DateEdit

Specifies that a WinForms DateEdit (or WPF DateEdit) editor is used to edit cell content.

Custom

Specifies that a custom editor is used to edit cell content.

Handle the WinForms Spreadsheet control’s CustomCellEdit (or WPF Spreadsheet control’s CustomCellEdit) event to assign a custom editor to a cell.

See Also