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 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also