Removes all the data from the specified range of cells.
Syntax
Parameters
- row
- Row index of start of range to clear
- column
- Column index of start of range to clear
- rowCount
- Number of rows to clear
- columnCount
- Number of columns to clear
Example
This example removes all the data (only) from the specified rows and columns.
C# | Copy Code |
---|
FarPoint.Win.Spread.Model.DefaultSheetDataModel dataModel = new FarPoint.Win.Spread.Model.DefaultSheetDataModel(5, 5);
fpSpread1.ActiveSheet.Models.Data = dataModel;
dataModel.ClearData(0, 0, 3, 3); |
Visual Basic | Copy Code |
---|
Dim dataModel As New FarPoint.Win.Spread.Model.DefaultSheetDataModel(5, 5)
FpSpread1.ActiveSheet.Models.Data = dataModel
dataModel.ClearData(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