Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / ISpreadsheet Interface / Clear Method
An integer value indicates the top row index of cell range.
An integer value indicates the left column index of cell range.
An integer value indicates the count of rows.
An integer value indicates the count of columns.
The options indicates which data type will be performed.


In This Topic
    Clear Method (ISpreadsheet)
    In This Topic
    Removes all the data from the specified range of cells.
    Syntax
    'Declaration
     
    
    Function Clear( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal rowCount As Integer, _
       ByVal columnCount As Integer, _
       ByVal options As ManipulationOptions _
    ) As Boolean
    'Usage
     
    
    Dim instance As ISpreadsheet
    Dim row As Integer
    Dim column As Integer
    Dim rowCount As Integer
    Dim columnCount As Integer
    Dim options As ManipulationOptions
    Dim value As Boolean
     
    value = instance.Clear(row, column, rowCount, columnCount, options)

    Parameters

    row
    An integer value indicates the top row index of cell range.
    column
    An integer value indicates the left column index of cell range.
    rowCount
    An integer value indicates the count of rows.
    columnCount
    An integer value indicates the count of columns.
    options
    The options indicates which data type will be performed.
    See Also