Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / CellSkipper Class / Skip Method
The row of the sheet.
The row index of the cell.
The column index of the cell.


In This Topic
    Skip Method
    In This Topic
    Returns a value that indicates whether to skip the cell.
    Syntax
    'Declaration
     
    Public Overridable Function Skip( _
       ByVal worksheet As Worksheet, _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As Boolean
    'Usage
     
    Dim instance As CellSkipper
    Dim worksheet As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim value As Boolean
     
    value = instance.Skip(worksheet, row, column)
    public virtual bool Skip( 
       Worksheet worksheet,
       int row,
       int column
    )

    Parameters

    worksheet
    The row of the sheet.
    row
    The row index of the cell.
    column
    The column index of the cell.

    Return Value

    Returns a value that indicates whether the cell was skipped.
    See Also