IWorksheet
GetFormula Method
|
Returns formula value corresponding to the cell.
Namespace:
Spire.Xls.Core
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
string GetFormula(
int row,
int column,
bool bR1C1
)
Function GetFormula (
row As Integer,
column As Integer,
bR1C1 As Boolean
) As String
String^ GetFormula(
int row,
int column,
bool bR1C1
)
abstract GetFormula :
row : int *
column : int *
bR1C1 : bool -> 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.
-
bR1C1
-
Type:
System
Boolean
Indicates whether R1C1 notation should be used.
Return Value
Type:
String
Formula contained by the cell.
See Also