Skip to main content
Row

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

CustomCellInplaceEditor.Range Property

Gets the cell range to which the custom cell in-place editor is assigned.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

CellRange Range { get; }

#Property Value

Type Description
CellRange

A CellRange object.

#Remarks

Use the Range property to obtain the cell range to which the custom cell in-place editor is assigned. When an end-user edits any cell in this range, the custom editor of the specified type (returned by the CustomCellInplaceEditor.EditorType property) appears within the edited cell instead of the default in-place editor.

To assign a custom in-place editor to a cell or cell range in a worksheet, use the CustomCellInplaceEditorCollection.Add method and pass the required CellRange object as a parameter.

See Also