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


column
Index of column to remove

Glossary Item Box

Removes a column at the specified position.

Syntax

Visual Basic (Declaration) 
Public Sub RemoveColumn( _
   ByVal column As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As DefaultSheetDataModel
Dim column As Integer
 
instance.RemoveColumn(column)
C# 
public void RemoveColumn( 
   int column
)

Parameters

column
Index of column to remove

Exceptions

ExceptionDescription
System.ArgumentOutOfRangeException Specified column is out of range; must be between 0 and total number of columns

Example

Visual BasicCopy Code
Dim dataModel As New FarPoint.Win.Spread.Model.DefaultSheetDataModel(8, 8)
FpSpread1.ActiveSheet.Models.Data = dataModel
dataModel.RemoveColumn(7)
C#Copy Code
FarPoint.Win.Spread.Model.DefaultSheetDataModel dataModel = new FarPoint.Win.Spread.Model.DefaultSheetDataModel(8, 8);
fpSpread1.ActiveSheet.Models.Data = dataModel;
dataModel.RemoveColumn(7);

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.