Table of Contents

TFormula.TFormula Constructor

Overloads

TFormula.TFormula

Creates an empty Excel formula

Syntax

Namespace: FlexCel.Core

public TFormula()

See also

TFormula.TFormula(String)

Creates a formula with the corresponding text and result=null.

Syntax

Namespace: FlexCel.Core

public TFormula(String aText)

Parameters

<-> Parameter Type Description
aText String Formula Text

See also

TFormula.TFormula(String, Object)

Creates a formula with the corresponding text and result.

Syntax

Namespace: FlexCel.Core

public TFormula(String aText, Object aResult)

Parameters

<-> Parameter Type Description
aText String Formula Text
aResult Object Formula Result

See also

TFormula.TFormula(String, Object, TFormulaSpan)

Creates a formula that spans to more than one row or column. Use it to create multicell array formulas or what-if tables.

Syntax

Namespace: FlexCel.Core

public TFormula(String aText, Object aResult, TFormulaSpan aSpan)

Parameters

<-> Parameter Type Description
aText String Formula Text
aResult Object Formula Result. You will normally want to set this to null, as it will be recalculated by FlexCel.
aSpan TFormulaSpan How many rows and columns this formula will span, and in which position for the array the formula is.

See also