[]
Gets whether the reference contains an error.
The default value is false. This property returns true when the
reference has the error flag, when the worksheet name is "#REF", or when
the reference points to an external workbook without a worksheet name.
public bool IsError { get; set; }
Public Property IsError As Boolean
Reference reference = new Reference();
reference.IsError = true;
bool isError = reference.IsError;