[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.LogicalNode.Value

Value Property

Value

Gets or sets the value of this node.

This property stores the boolean value represented by this logical literal node in the syntax tree.

Declaration
public bool Value { get; set; }
Public Property Value As Boolean
Examples
LogicalNode node = new LogicalNode(true);
bool value = node.Value;
node.Value = false;