officefileapi-devexpress-dot-spreadsheet-dot-cellvalue-70d33679.md
Returns the CellValue object specifying the #NULL! error value of a cell.
Namespace : DevExpress.Spreadsheet
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
public static CellValue ErrorNullIntersection
Public Shared ErrorNullIntersection As CellValue
| Type | Description |
|---|---|
| CellValue |
A cell error value.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ErrorNullIntersection field.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
how-to-use-excel-add-ins-in-winforms-spreadsheet/CS/SpreadsheetAddIn/Form1.cs#L72
result.Add(-2146826259, DevExpress.Spreadsheet.CellValue.ErrorName);
result.Add(-2146826288, DevExpress.Spreadsheet.CellValue.ErrorNullIntersection);
result.Add(-2146826252, DevExpress.Spreadsheet.CellValue.ErrorNumber);
how-to-use-excel-add-ins-in-winforms-spreadsheet/VB/SpreadsheetAddIn/Form1.vb#L69
result.Add(-2146826259, DevExpress.Spreadsheet.CellValue.ErrorName)
result.Add(-2146826288, DevExpress.Spreadsheet.CellValue.ErrorNullIntersection)
result.Add(-2146826252, DevExpress.Spreadsheet.CellValue.ErrorNumber)
See Also