Spire.XLS is a professional Excel API that enables developers to create, manage, manipulate, convert and print Excel worksheets. Get free and professional technical support for Spire.XLS for .NET, Java, Android, C++, Python.

Wed Mar 25, 2015 8:20 am

Hi, how remove or not print page blank in exell ??
Thank

ict@sogedin.it
 
Posts: 63
Joined: Mon Jul 15, 2013 2:06 pm

Wed Mar 25, 2015 9:33 am

Hello,

Sorry that at present our product doesn't support the feature to remove or not print blank page in excel.

Sincerely,
Sweety

E-iceblue support team
Last edited by sweety1 on Thu Mar 26, 2015 1:36 am, edited 2 times in total.
User avatar

sweety1
 
Posts: 539
Joined: Wed Mar 11, 2015 1:14 am

Wed Mar 25, 2015 12:11 pm

OK, hidden column ??

ict@sogedin.it
 
Posts: 63
Joined: Mon Jul 15, 2013 2:06 pm

Thu Mar 26, 2015 2:52 am

Hello,

Thanks for your inquiry.
If you want to set the hidden column, please refer to the following code:
Code: Select all
 Workbook workbook = new Workbook();
            workbook.Version = ExcelVersion.Version2007;
            workbook.LoadFromFile(@"test.xlsx");
            Worksheet sheet = workbook.Worksheets[0];
            int index = 1;
            sheet.HideColumn(index);
            workbook.SaveToFile("sample.xlsx",ExcelVersion.Version2007);

The hidden column would not be printed at the time of printing. So, there is no need to remove it.
Please feel free to contact us if you have any problems.

Best Regards,
Sweety

E-iceblue support team
User avatar

sweety1
 
Posts: 539
Joined: Wed Mar 11, 2015 1:14 am

Return to Spire.XLS