You can use the WorksheetFunction
method:
Globals.ThisAddIn.Application.WorksheetFunction.IsErr(...)
or
[Your Excel Object].WorksheetFunction.IsErr(...)
The IsErr
is semantically identical to the Excel worksheet function, only instead of the cell reference pass in the actual value - AFAIK.