Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IgnoredError Interface

Specifies a worksheet range and a type of the formula error which will be ignored in that range.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

public interface IgnoredError

The following members return IgnoredError objects:

#Remarks

The IgnoredError object specifies an error-checking option and a worksheet range in which this option is disabled. Objects of the IgnoredError type are contained within the IgnoredErrorCollection collection accessible using the Worksheet.IgnoredErrors property.

The following code snippet disables checking empty cell references in cell A1.

worksheet.IgnoredErrors.Add(worksheet["A1"], IgnoredErrorType.EmptyCellReferences);
See Also