Class EvaluateEventArgs
This class is used when formula value needs to be evaluated. Provides range that contains formula that should be evaluated and Ptg array - parsed formula string.
Inheritance
System.Object
EvaluateEventArgs
Namespace: Syncfusion.XlsIO.Implementation
Assembly: Syncfusion.XlsIO.UWP.dll
Syntax
public class EvaluateEventArgs : EventArgs
Constructors
EvaluateEventArgs(IRange, Ptg[])
Main constructor.
Declaration
public EvaluateEventArgs(IRange range, Ptg[] array)
Parameters
Type | Name | Description |
---|---|---|
IRange | range | Range containing formula. |
Ptg[] | array | Formula tokens array. |
Properties
Empty
Empty arguments (all properties with default values). Read-only.
Declaration
public static EvaluateEventArgs Empty { get; }
Property Value
Type |
---|
EvaluateEventArgs |
PtgArray
Ptg array with formula tokens of the range.
Declaration
public Ptg[] PtgArray { get; }
Property Value
Type |
---|
Ptg[] |
Range
Range that raised this event. Read-only.
Declaration
public IRange Range { get; }
Property Value
Type |
---|
IRange |