SSGetFormulaLen Function
Applies To
fpSpread DLL control
Description
Returns the length (number of characters) of a formula in a cell, a column, a row, or the entire sheet.
Syntax
C
int SSGetFormulaLen(HWND hWnd, SS_COORD Col, SS_COORD Row);
C++
int TSpread::GetFormulaLen(SS_COORD Col, SS_COORD Row);
Parameters
This function has the following parameters:
Parameter | Description |
---|---|
hWnd | Window handle of the fpSpread control |
Col | Column number of cell (Value can be SS_HEADER or SS_ALLCOLS.) |
Row | Row number of cell (Value can be SS_HEADER or SS_ALLROWS.) |
Remarks
This function is applied to the current sheet setting unless you first call the SSSetSheet function to specify the sheet for which you are calling this function.
Return Value
Length of the formula (in characters).
See Also
SSGetFormula, SSSetFormula, SSSetFormulaRange, SSSetSheet functions