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

IgnoredErrorCollection.Remove(IgnoredError) Method

Removes the specified item from the collection.

Namespace: DevExpress.Spreadsheet

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

Declaration

bool Remove(
    IgnoredError item
)

Parameters

Name Type Description
item IgnoredError

A IgnoredError object to be removed from the collection.

Returns

Type Description
Boolean

True if the specified item has been found in the collection and successfully removed; otherwise, false.

Remarks

To remove an item from the collection by its index, use the IgnoredErrorCollection.RemoveAt method. To remove all items from the collection, use the IgnoredErrorCollection.Clear method.

See Also