Visa eller dölj flikar i Aspose.Cells

Här nedan följer ett komplett exempel som öppnar en Excel-fil (book1.xls), gömmer dess flikar och sparar den modifierade filen som output.xls.

Du kan se att filen Book1.xls innehåller flikar i figuren nedan. Efter att exempelkoden har utförts göms flikarna, som du kan se på skärmbilden av filen output.xls nedan.

book1.xls: Excel-fil innan någon modifiering

todo:image_alt_text

output.xls: Excel-fil efter modifiering

todo:image_alt_text

C#

 //Instantiating a Workbook object

//Opening the Excel file

Workbook workbook = new Workbook("book1.xls");

//Hiding the tabs of the Excel file

workbook.Settings.ShowTabs = false;

//Saving the modified Excel file

workbook.Save("output.xls");

Styra fliken Bredd

C#

 //Adjusting the sheet tab bar width

workbook.Worksheets.SheetTabBarWidth = 800;

Ladda ned körbar kod

Ladda ned provkoden