Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / SheetSpanModel Class / Clear Method / Clear(Int32,Int32,Int32,Int32) Method
The row index from which to start clearing cell spans.
The column index from which to start clearing cell spans.
The number of rows to clear.
The number of columns to clear.


In This Topic
    Clear(Int32,Int32,Int32,Int32) Method
    In This Topic
    Removes cell spans from the collection within the specified area.
    Syntax
    'Declaration
     
    Public Overloads Sub Clear( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal rowCount As Integer, _
       ByVal columnCount As Integer _
    ) 
    'Usage
     
    Dim instance As SheetSpanModel
    Dim row As Integer
    Dim column As Integer
    Dim rowCount As Integer
    Dim columnCount As Integer
     
    instance.Clear(row, column, rowCount, columnCount)
    public void Clear( 
       int row,
       int column,
       int rowCount,
       int columnCount
    )

    Parameters

    row
    The row index from which to start clearing cell spans.
    column
    The column index from which to start clearing cell spans.
    rowCount
    The number of rows to clear.
    columnCount
    The number of columns to clear.
    See Also