Skip to main content
All docs
V19.1
.NET Framework 4.5.2+
Row

CustomCellInplaceEditorCollection.Remove(Range, CustomCellInplaceEditorType) Method

Removes the custom cell in-place editors of the specified type from the specified cell range.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

void Remove(
    Range range,
    CustomCellInplaceEditorType editorType
)

Parameters

Name Type Description
range Range

A Range object that specifies a cell range from which the custom cell in-place editors should be removed.

editorType CustomCellInplaceEditorType

A CustomCellInplaceEditorType enumeration value specifying the type of the custom cell in-place editors to be removed.

Remarks

To remove all custom cell in-place editors embedded within cells of a specific range in the worksheet, use the CustomCellInplaceEditorCollection.Remove method overload that accepts a Range object as a parameter. To remove an individual custom in-place editor from the collection, use the CustomCellInplaceEditorCollection.Remove method overload with the item parameter or the CustomCellInplaceEditorCollection.RemoveAt method.

See Also