Spread Windows Forms 6.0 Product Documentation
Clear(Int32,Int32,Int32,Int32) Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetSpanModel Class > Clear Method : Clear(Int32,Int32,Int32,Int32) Method


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

Glossary Item Box

Removes cell spans from the collection within the specified area.

Syntax

Visual Basic (Declaration) 
Public Overloads Overridable Sub Clear( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal rowCount As Integer, _
   ByVal columnCount As Integer _
) 
Visual Basic (Usage)Copy Code
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)
C# 
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.
C#Copy Code
FarPoint.Win.Spread.Model.DefaultSheetSpanModel defspanModel = new FarPoint.Win.Spread.Model.DefaultSheetSpanModel();
fpSpread1.ActiveSheet.Models.Span = defspanModel;
defspanModel.Clear(0, 0, 3, 3);
Visual BasicCopy Code
Dim defspanModel As New FarPoint.Win.Spread.Model.DefaultSheetSpanModel()
FpSpread1.ActiveSheet.Models.Span = defspanModel
defspanModel.Clear(0, 0, 3, 3)

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.