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


In This Topic
    GetUnspilledValue Method (WorksheetBase)
    In This Topic
    Gets raw data from the specified cell on this sheet. The spilled value will be skipped.
    Syntax
    'Declaration
     
    
    Public Function GetUnspilledValue( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As Object
    'Usage
     
    
    Dim instance As WorksheetBase
    Dim row As Integer
    Dim column As Integer
    Dim value As Object
     
    value = instance.GetUnspilledValue(row, column)
    public object GetUnspilledValue( 
       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 of the cell.
    See Also