Spread Windows Forms 9.0 Product Documentation > Developer's Guide > Understanding the Spreadsheet Objects > Working with Rows and Columns > Adding a Row or Column |
You can add one or more columns or rows to a sheet, and specify where the column or row is added. You can use the methods in the SheetView class or the methods in the DefaultSheetDataModel class.
If you set the cell type for the column and a row is inserted, the new cells in the column use the cell type for the entire column. If you set the cell type for individual cells and a new row is inserted, then the new cells use the default cell type, and you would need to set the cell type for each of the new cells.
For more details refer to the SheetView.AddRows method or SheetView.AddColumns method.
This example code adds two columns before column 6.
C# |
Copy Code
|
---|---|
fpSpread1.Sheets[0].AddColumns(6,2); |
VB |
Copy Code
|
---|---|
FpSpread1.Sheets(0).AddColumns(6,2) |
This example code adds two columns before column 6.
C# |
Copy Code
|
---|---|
FarPoint.Win.Spread.SheetView Sheet0; Sheet0 = fpSpread1.Sheets[0]; Sheet0.AddColumns(6,2); |
VB |
Copy Code
|
---|---|
Dim Sheet0 As FarPoint.Win.Spread.SheetView Sheet0 = FpSpread1.Sheets(0) Sheet0.AddColumns(6, 2) |
An additional row or column is added to the sheet.