XlsWorksheet
GetFormula Method (Int32, Int32, Boolean, Boolean)
|
Returns formula 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 GetFormula(
int row,
int column,
bool bR1C1,
bool isForSerialization
)
Public Function GetFormula (
row As Integer,
column As Integer,
bR1C1 As Boolean,
isForSerialization As Boolean
) As String
public:
String^ GetFormula(
int row,
int column,
bool bR1C1,
bool isForSerialization
)
member GetFormula :
row : int *
column : int *
bR1C1 : bool *
isForSerialization : 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.
-
isForSerialization
-
Type:
System
Boolean
Return Value
Type:
String
Formula contained by the cell.
See Also