[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.OperatorNode.Kind

Kind Property

Kind

Gets or sets the type of the operator.

This property stores the OperatorKind associated with this OperatorNode.

Declaration
public OperatorKind Kind { get; set; }
Public Property Kind As OperatorKind
Examples
OperatorNode node = new OperatorNode(OperatorKind.Addition);
node.Kind = OperatorKind.Subtraction;
OperatorKind kind = node.Kind;