Class QuickValueSetEventArgs
Event argument class for the QuickValueSetEventArgs event.
Inheritance
System.Object
System.EventArgs
QuickValueSetEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Calculate
Assembly: Syncfusion.Calculate.Base.dll
Syntax
public class QuickValueSetEventArgs : EventArgs
Constructors
QuickValueSetEventArgs(String, String, FormulaInfoSetAction)
The only constructor for QuickValueSetEventArgs.
Declaration
public QuickValueSetEventArgs(string key, string value, FormulaInfoSetAction action)
Parameters
Type | Name | Description |
---|---|---|
System.String | key | This is the object that is used as the key value in the Hashtable to identify the formula information. It is also the string you use in formulas (enclosed in brackets) to reference a formula from another formula. |
System.String | value | New value being assigned. |
FormulaInfoSetAction | action | Indicates the reason the event is being raised. See FormulaInfoSetAction. |
Properties
Action
The reason the event was raised.
Declaration
public FormulaInfoSetAction Action { get; set; }
Property Value
Type |
---|
FormulaInfoSetAction |
Key
A property that gets/sets the Hashtable lookup object for the FormulaInfo object being changed.
Declaration
public string Key { get; set; }
Property Value
Type |
---|
System.String |
Value
A property that gets/sets the new value being set.
Declaration
public string Value { get; set; }
Property Value
Type |
---|
System.String |