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


column
Index of first column to remove
count
Number of columns to remove

Glossary Item Box

Removes the column or columns on this sheet at the specified index.

Syntax

Visual Basic (Declaration) 
Public Overridable Sub RemoveColumns( _
   ByVal column As Integer, _
   ByVal count As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim column As Integer
Dim count As Integer
 
instance.RemoveColumns(column, count)
C# 
public virtual void RemoveColumns( 
   int column,
   int count
)

Parameters

column
Index of first column to remove
count
Number of columns to remove

Example

This example removes the column or columns from the specified index.
C#Copy Code
fpSpread1.ActiveSheet.RemoveColumns(2, 498);
fpSpread1.ActiveSheet.RemoveRows(2, 498);
Visual BasicCopy Code
FpSpread1.ActiveSheet.RemoveColumns(2, 498)
FpSpread1.ActiveSheet.RemoveRows(2, 498)

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.