Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Worksheet Class / GetText Method / GetText(Int32,Int32,Object) Method
An integer value indicates the row index of cell.
An integer value indicates the column index of cell.
The value to format.


In This Topic
    GetText(Int32,Int32,Object) Method
    In This Topic
    Gets the displayed text of the specified value base on the target cell in this sheet.
    Syntax
    'Declaration
     
    
    Public Overloads Function GetText( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal value As Object _
    ) As String
    'Usage
     
    
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim value As Object
    Dim value As String
     
    value = instance.GetText(row, column, value)
    public string GetText( 
       int row,
       int column,
       object value
    )

    Parameters

    row
    An integer value indicates the row index of cell.
    column
    An integer value indicates the column index of cell.
    value
    The value to format.

    Return Value

    The System.String value represents the displayed text of the cell.
    Remarks
    Conditional format(s) is excluded.
    See Also