[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.ErrorNode.Value

Value Property

Value

Gets the error value stored in this node.

This property stores the CalcError that represents the error literal associated with this ErrorNode.

Declaration
public CalcError Value { get; set; }
Public Property Value As CalcError
Examples
ErrorNode node = new ErrorNode(CalcError.Div0);
CalcError error = node.Value;
node.Value = CalcError.Name;