XlsWorksheet
GetFormulaStringValue Method
|
Returns formula string value corresponding to the cell.
Namespace:
Spire.Xls.Core.Spreadsheet
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public string GetFormulaStringValue(
int row,
int column
)
Public Function GetFormulaStringValue (
row As Integer,
column As Integer
) As String
public:
virtual String^ GetFormulaStringValue(
int row,
int column
) sealed
abstract GetFormulaStringValue :
row : int *
column : int -> string
override GetFormulaStringValue :
row : int *
column : int -> string
Parameters
-
row
-
Type:
System
Int32
One-based row index of the cell to get value from.
-
column
-
Type:
System
Int32
One-based column index of the cell to get value from.
Return Value
Type:
String
String contained by the cell.
Implements
IWorksheet
GetFormulaStringValue(Int32, Int32)
See Also