Removes the column or columns on this sheet at the specified index.
Syntax
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim column As Integer
Dim count As Integer
instance.RemoveColumns(column, 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 Basic | Copy 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