20 lines
331 B
C#
20 lines
331 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Formula
|
|
{
|
|
internal class STValueNode : STNode
|
|
{
|
|
public FormulaValue Value { get; set; }
|
|
|
|
public STValueNode(FormulaValue value) : base(STNodeType._FORMULA_VALUE, 0, 0)
|
|
{
|
|
this.Value = value;
|
|
}
|
|
|
|
public override object Clone()
|
|
{
|
|
return new STValueNode(this.Value);
|
|
}
|
|
}
|
|
}
|