Parameters
- column
- Position to add the new column
- count
- Number of columns to add
FarPoint.Web.Spread.SheetView sv;
sv = FpSpread1.ActiveSheetView
if (IsPostBack)
{
sv.AddColumns(1, 2);
}
Dim sv As FarPoint.Web.Spread.SheetView sv = FpSpread1.ActiveSheetView If IsPostBack Then sv.AddColumns(1, 2) End If