Skip to main content
All docs
V25.1
  • Row

    CustomCellInplaceEditorCollection.Remove(CellRange, CustomCellInplaceEditorType) Method

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

    Namespace: DevExpress.Spreadsheet

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

    NuGet Package: DevExpress.Spreadsheet.Core

    Declaration

    void Remove(
        CellRange range,
        CustomCellInplaceEditorType editorType
    )

    Parameters

    Name Type Description
    range CellRange

    A CellRange 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 CellRange 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