CustomCellInplaceEditorType Enum
Lists types of the custom in-place editors that can be assigned to cells in a worksheet.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.2.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
#Declaration
#Members
Name | Description |
---|---|
Check
|
Specifies that a Win |
Combo
|
Specifies that a Win |
Date
|
Specifies that a Win |
Custom
|
Specifies that a custom editor is used to edit cell content. Handle the Win |
#Related API Members
The following properties accept/return CustomCellInplaceEditorType values:
Library | Related API Members |
---|---|
Win |
Cell |
WPF Controls | Cell |
Office File API | Custom |
#Remarks
To assign a custom in-place editor of a particular type to a cell or cell range in a worksheet, use the CustomCellInplaceEditorCollection.Add method and pass the appropriate CustomCellInplaceEditorType enumeration value as a parameter. Information about cell in-place editors of the listed types is saved to a file in XLS, XLSX, XLSB, XLT, or XLTX format, so the corresponding editors can be successfully restored when you load a document into the Spreadsheet control again. If you use an in-place editor of the CustomCellInplaceEditorType.Custom type, you must handle the SpreadsheetControl.CustomCellEdit event to define a specific editor to be assigned to the required cells.
For an example on how to use custom editors for in-place editing of cell content, refer to the How to: Assign Custom In-place Editors to Worksheet Cells article.