XlsWorksheet
GetText Method
|
Returns 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 GetText(
int row,
int column
)
Public Function GetText (
row As Integer,
column As Integer
) As String
public:
virtual String^ GetText(
int row,
int column
) sealed
abstract GetText :
row : int *
column : int -> string
override GetText :
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
GetText(Int32, Int32)
See Also