Class CalcQuick
A class that allows you to quickly add calculation support for controls on a form, or usercontrol.
Inherited Members
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.Windows.dll
Syntax
public class CalcQuick : CalcQuickBase, ISheetData, ICalcData, IDisposable
Constructors
CalcQuick()
Declaration
public CalcQuick()
Methods
RegisterControl(Control)
Used to register a control as a calculation object in this CalcQuick instance.
Declaration
protected virtual void RegisterControl(Control c)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.Forms.Control | c | The control to register. |
Remarks
To reference this calculation object from another calculation in this CalcQuick object, you use the Control.Name string. The value of this calculation object is bound to the Control.Text property.
RegisterControlArray(Control[])
A Virtual method that registers an array of controls as formula objects in this CalcQuick instance.
Declaration
public virtual void RegisterControlArray(Control[] controls)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.Forms.Control[] | controls | The control array. |
Implements
System.IDisposable