You can remove one or more columns or rows from a sheet. You can use the RemoveRowsmethod and RemoveColumns of the class to remove row and column in the sheet.
If you simply want to hide the row or column from the end user, but not remove it from the sheet, kindly refer to Showing or Hiding a Row or Column.
This example code removes two columns before 7th column.
C# |
Copy Code
|
---|---|
fpSpread1.Sheets[0].RemoveColumns(6,2); |
Visual Basic |
Copy Code
|
---|---|
FpSpread1.Sheets(0).RemoveColumns(6,2) |
This example code removes two columns before 7th column.
C# |
Copy Code
|
---|---|
FarPoint.Win.Spread.SheetView Sheet0; Sheet0 = fpSpread1.Sheets[0]; Sheet0.RemoveColumns(6,2); |
Visual Basic |
Copy Code
|
---|---|
Dim Sheet0 As FarPoint.Win.Spread.SheetView Sheet0 = fpSpread1.Sheets(0) Sheet0.RemoveColumns(6, 2) |