[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.LogicalNode

LogicalNode Class

Represents a boolean literal node in a formula syntax tree.

A LogicalNode stores a bool value that can be read or updated after creation.

Inheritance
LogicalNode
Implements
Namespace: GrapeCity.Documents.Excel.Expressions
Assembly: DS.Documents.Excel.dll
Syntax
public class LogicalNode : ConstNode, ICloneable
Public Class LogicalNode
    Inherits ConstNode
    Implements ICloneable
Examples
LogicalNode node = new LogicalNode(true);
bool value = node.Value;

Constructors

Name Description
LogicalNode(bool)

Creates a new LogicalNode from a boolean value.

This constructor initializes a logical literal node in the expression syntax tree with the specified constant value.

Properties

Name Description
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.