Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

CellEditorOpenedEventArgs.CustomEditorType Property

Returns the type of the custom cell editor.

Namespace: DevExpress.XtraSpreadsheet

Assembly: DevExpress.XtraSpreadsheet.v24.2.dll

NuGet Package: DevExpress.Win.Spreadsheet

#Declaration

public CustomCellInplaceEditorType CustomEditorType { get; }

#Property Value

Type Description
CustomCellInplaceEditorType

Specifies the custom editor 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.

#Remarks

The CellEditorOpenedEventArgs.IsCustom property allows you to determine whether the currently edited cell contains a custom in-place editor. If this property returns true, use the CustomEditorType property to determine the custom editor type.

See Also