Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / Clear Method / Clear(Int32,Int32,Int32,Int32,SheetArea) Method
The start index.
The start column.
The number or rows to clear.
The number of columns to clear.
The area to clear.


In This Topic
    Clear(Int32,Int32,Int32,Int32,SheetArea) Method
    In This Topic
    Clear 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, _
       ByVal area As SheetArea _
    ) 
    'Usage
     
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim rowCount As Integer
    Dim columnCount As Integer
    Dim area As SheetArea
     
    instance.Clear(row, column, rowCount, columnCount, area)
    public void Clear( 
       int row,
       int column,
       int rowCount,
       int columnCount,
       SheetArea area
    )

    Parameters

    row
    The start index.
    column
    The start column.
    rowCount
    The number or rows to clear.
    columnCount
    The number of columns to clear.
    area
    The area to clear.
    See Also