Hi Team,
I am using below code where i am trying to freeze a set of rows and then try to save in xlsb format.
But it is enabling “Split” option in saved file. Is it possible for me to save the file in xlsb format without “Split” option.
Workbook wb = new Workbook(@“C:\test\temp.xlsb”);
License lic = new License();
Aspose.Cells.License license = new Aspose.Cells.License();
license.SetLicense(“Aspose.Cells.lic”);
Worksheet ws = wb.Worksheets[“Sheet1”];
ws.FreezePanes(7, 0, 7, 0);//7, 2, 7, 0);
wb.Save(@“C:\test\temp1_old.xlsb”);