Spread Windows Forms 6.0 Product Documentation
Clear Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetStyleModel Class : Clear Method


row
Starting model row index to clear
column
Starting model column index to clear
rowCount
Number of rows to clear
columnCount
Number of columns to clear

Glossary Item Box

Removes all of the direct styles from the specified range.

Syntax

Visual Basic (Declaration) 
Public 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 DefaultSheetStyleModel
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
Starting model row index to clear
column
Starting model column index to clear
rowCount
Number of rows to clear
columnCount
Number of columns to clear

Example

This example removes all of the direct styles from the specified range.
C#Copy Code
FarPoint.Win.Spread.Model.DefaultSheetStyleModel defstyleModel = new FarPoint.Win.Spread.Model.DefaultSheetStyleModel();
defstyleModel = (FarPoint.Win.Spread.Model.DefaultSheetStyleModel)fpSpread1.ActiveSheet.Models.Style;
defstyleModel.Clear(0, 0, 500, 500);
Visual BasicCopy Code
Dim defstyleModel As New FarPoint.Win.Spread.Model.DefaultSheetStyleModel()
defstyleModel = FpSpread1.ActiveSheet.Models.Style
defstyleModel.Clear(0, 0, 500, 500)

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.