Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / GetText Method / GetText(Int32,Int32) Method
The row index.
The column index.


In This Topic
    GetText(Int32,Int32) Method
    In This Topic
    Gets the formatted text in the cell using the IFormatter object for the cell.
    Syntax
    'Declaration
     
    Public Overloads Function GetText( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As String
    'Usage
     
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim value As String
     
    value = instance.GetText(row, column)
    public string GetText( 
       int row,
       int column
    )

    Parameters

    row
    The row index.
    column
    The column index.

    Return Value

    Returns the formatted text of the cell.
    See Also