Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Worksheet Class / GetFormattedValue Method
An integer value indicates the row index of cell.
An integer value indicates the column index of cell.


In This Topic
    GetFormattedValue Method (Worksheet)
    In This Topic
    Gets the formatted value from the specified cell on this sheet.
    Syntax
    'Declaration
     
    
    Public Function GetFormattedValue( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As Object
    'Usage
     
    
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim value As Object
     
    value = instance.GetFormattedValue(row, column)
    public object GetFormattedValue( 
       int row,
       int column
    )

    Parameters

    row
    An integer value indicates the row index of cell.
    column
    An integer value indicates the column index of cell.

    Return Value

    The System.Object value represents the displayed value of the cell.
    See Also