Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetView Class / GetText(Int32,Int32) Method
Row index
Column index


In This Topic
    GetText(Int32,Int32) Method
    In This Topic
    Gets the formatted text in the cell on this sheet using the FarPoint.Win.Spread.CellType.IFormatter object for the cell.
    Syntax
    'Declaration
     
    
    Public Function GetText( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As String
    'Usage
     
    
    Dim instance As SheetView
    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
    Row index
    column
    Column index
    Exceptions
    ExceptionDescription
    Specified row index is out of range; must be between 0 and the total number of rows
    Specified column index is out of range; must be between 0 and the total number of columns
    See Also