Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / WorksheetBase Class / PreviousNonEmptyRowInColumn(Int32,Int32,Boolean) Method
start column index
start row index
Return the first block index if the found cell is in block with the specified cell.


In This Topic
    PreviousNonEmptyRowInColumn(Int32,Int32,Boolean) Method
    In This Topic
    Find the previous non-empty data row in a column
    Syntax
    'Declaration
     
    
    Public Overridable Function PreviousNonEmptyRowInColumn( _
       ByVal column As Integer, _
       ByVal row As Integer, _
       Optional ByVal skipInsideItems As Boolean _
    ) As Integer
    'Usage
     
    
    Dim instance As WorksheetBase
    Dim column As Integer
    Dim row As Integer
    Dim skipInsideItems As Boolean
    Dim value As Integer
     
    value = instance.PreviousNonEmptyRowInColumn(column, row, skipInsideItems)
    public virtual int PreviousNonEmptyRowInColumn( 
       int column,
       int row,
       bool skipInsideItems
    )

    Parameters

    column
    start column index
    row
    start row index
    skipInsideItems
    Return the first block index if the found cell is in block with the specified cell.

    Return Value

    An integer value represents the previous non-empty row in the specified column.
    See Also