XlsWorksheet
GetCaculateValue Method
|
Note: This API is now obsolete.
Returns the formula string if the cell contains a formula, or the value if
the cell cantains anything other than a formula.
Namespace:
Spire.Xls.Core.Spreadsheet
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
[ObsoleteAttribute("the method is obsolete, please use GetCalculateValue.")]
public Object GetCaculateValue(
int row,
int col
)
<ObsoleteAttribute("the method is obsolete, please use GetCalculateValue.")>
Public Function GetCaculateValue (
row As Integer,
col As Integer
) As Object
public:
[ObsoleteAttribute(L"the method is obsolete, please use GetCalculateValue.")]
Object^ GetCaculateValue(
int row,
int col
)
[<ObsoleteAttribute("the method is obsolete, please use GetCalculateValue.")>]
member GetCaculateValue :
row : int *
col : int -> Object
Parameters
-
row
-
Type:
System
Int32
The row of the cell.
-
col
-
Type:
System
Int32
The column of the cell.
Return Value
Type:
Object
The formula string or value.
See Also