Spread Windows Forms 12.0 Product Documentation
Clear(Int32,Int32,Int32,Int32) Method
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetSpanModel Class > Clear Method : Clear(Int32,Int32,Int32,Int32) Method
Row index from which to start clearing cell spans
Column index from which to start clearing cell spans
Number of rows to clear
Number of columns to clear
Removes cell spans from the collection within the specified area.
Syntax
'Declaration
 
Public Overloads Overridable Sub Clear( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
) 
'Usage
 
Dim instance As DefaultSheetSpanModel
Dim row As Integer
Dim column As Integer
Dim rowCount As Integer
Dim columnCount As Integer
 
instance.Clear(row, column, rowCount, columnCount)
public virtual void Clear( 
   int row,
   int column,
   int rowCount,
   int columnCount
)

Parameters

row
Row index from which to start clearing cell spans
column
Column index from which to start clearing cell spans
rowCount
Number of rows to clear
columnCount
Number of columns to clear
Example
This example removes spans from the specified range.
FarPoint.Win.Spread.Model.DefaultSheetSpanModel defspanModel = new FarPoint.Win.Spread.Model.DefaultSheetSpanModel();
fpSpread1.ActiveSheet.Models.Span = defspanModel;
defspanModel.Clear(0, 0, 3, 3);
Dim defspanModel As New FarPoint.Win.Spread.Model.DefaultSheetSpanModel()
FpSpread1.ActiveSheet.Models.Span = defspanModel
defspanModel.Clear(0, 0, 3, 3)
See Also

Reference

DefaultSheetSpanModel Class
DefaultSheetSpanModel Members
Overload List