Removes one or more columns starting with the column at the specified position.
            
            
            
Syntax
            Parameters
- column
 
- Index of first column to remove
 - count
 
- Number of columns to remove
 
            
             
            
Exceptions
						
            
            
            
            
            
Example
| Visual Basic |  Copy Code | 
|---|
Dim dataModel As New FarPoint.Win.Spread.Model.DefaultSheetDataModel(8, 8)
FpSpread1.ActiveSheet.Models.Data = dataModel
dataModel.RemoveColumns(2, 6)  | 
 
| C# |  Copy Code | 
|---|
FarPoint.Win.Spread.Model.DefaultSheetDataModel dataModel = new FarPoint.Win.Spread.Model.DefaultSheetDataModel(8, 8);
fpSpread1.ActiveSheet.Models.Data = dataModel;
dataModel.RemoveColumns(2, 6);  | 
 
 
            
            
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
 
            
            
See Also