我知道如何设置单个Farpoint数据以在excel中打印 但我不知道一个Excell文件中包含两个Farpoint数据。我想在一个Excel文件中包含两个Farpoint
string newfilepath = "";
string newfilepathmnt = "";
object mngrclassobj = Session["Mngrobj"];
SessionManager mngrclass = (SessionManager)mngrclassobj;
newfilepath = mngrclass.ExcelPath + "TruckUtilizationBaseFiguresCompany.xls";
newfilepathmnt = mngrclass.ExcelPath + "TruckUtilizationbaseFiguresCompany.xls";
string filepath = newfilepath;
string filepathmnt = newfilepathmnt;
fpsDetails.SaveExcel(filepath, FarPoint.Web.Spread.Model.IncludeHeaders.BothCustomOnly);
fpsMonthlySetup.SaveExcel(filepathmnt, FarPoint.Web.Spread.Model.IncludeHeaders.BothCustomOnly);
FileInfo file = new FileInfo(filepath);
答案 0 :(得分:0)
要将工作表保存到同一Excel工作簿,需要将工作表添加到FpSpread的一个实例,然后使用SaveExcel保存该工作表。 请尝试创建一个新的FpSpread,然后使用FpSpread.Sheets.Add将这些工作表添加到其中,然后调用FpSpread.SaveExcel。