[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.Reference.IsError

IsError Property

IsError

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.

Declaration
public bool IsError { get; set; }
Public Property IsError As Boolean
Examples
Reference reference = new Reference();
reference.IsError = true;
bool isError = reference.IsError;