XlsWorksheet
GetFormula Method (Int32, Int32, 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
)
Public Function GetFormula (
row As Integer,
column As Integer,
bR1C1 As Boolean
) As String
public:
virtual String^ GetFormula(
int row,
int column,
bool bR1C1
) sealed
abstract GetFormula :
row : int *
column : int *
bR1C1 : bool -> string
override 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.
Implements
IWorksheet
GetFormula(Int32, Int32, Boolean)
See Also