Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

CustomCellInplaceEditor.Range Property

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

Namespace: DevExpress.Spreadsheet

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

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