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

CustomCellInplaceEditorCollection.Remove(CustomCellInplaceEditor) Method

Removes the specified custom cell in-place editor from the collection.

Namespace: DevExpress.Spreadsheet

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

Declaration

bool Remove(
    CustomCellInplaceEditor item
)

Parameters

Name Type Description
item CustomCellInplaceEditor

A CustomCellInplaceEditor object to be removed from the collection.

Returns

Type Description
Boolean

true, if the specified custom cell editor is contained in the collection and successfully removed; otherwise, false.

Remarks

To remove a custom cell editor from the collection by its index, use the CustomCellInplaceEditorCollection.RemoveAt method. To remove all custom cell editors from the collection, use the CustomCellInplaceEditorCollection.Clear method.

See Also