Table of Contents

ExcelFile.SetFormulaTokens Method

Overloads

ExcelFile.SetFormulaTokens(Int32, Int32, TTokenList)

Sets a cell with the formula specified by its tokens. Normally you will get the tokens by modifying the result of GetFormulaTokens(Int32, Int32)

Syntax

Namespace: FlexCel.Core

public void SetFormulaTokens(Int32 row, Int32 col, TTokenList tokens)

Parameters

<-> Parameter Type Description
row Int32 Row of the cell with the formula. (1 based)
col Int32 Column of the cell with the formula. (1 based)
tokens TTokenList A collection of tokens which define the formula.

See also

ExcelFile.SetFormulaTokens(Int32, Int32, Int32, TTokenList)

Sets a cell with the formula specified by its tokens. Normally you will get the tokens by modifying the result of GetFormulaTokens(Int32, Int32)

Syntax

Namespace: FlexCel.Core

public abstract void SetFormulaTokens(Int32 sheet, Int32 row, Int32 col, TTokenList tokens)

Parameters

<-> Parameter Type Description
sheet Int32 Sheet of the cell with the formula. (1 based)
row Int32 Row of the cell with the formula. (1 based)
col Int32 Column of the cell with the formula. (1 based)
tokens TTokenList A collection of tokens which define the formula.

See also