Removes cell spans from the collection within the specified area.
Syntax
'Declaration
Public Overloads Sub Clear( _
ByVal As System.Integer, _
ByVal column As System.Integer, _
ByVal As System.Integer, _
ByVal columnCount As System.Integer _
)
'Usage
Dim instance As SheetSpanModel
Dim row As System.Integer
Dim column As System.Integer
Dim rowCount As System.Integer
Dim columnCount As System.Integer
instance.Clear(row, column, rowCount, columnCount)
public void Clear(
System.int ,
System.int column,
System.int ,
System.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