Menu

Set Worksheet Tab Color

Shoaib

Aspose.Cells - Set Worksheet Tab Color

//Instantiate a new Workbook
Workbook workbook = new Workbook(dataPath + "workbook.xls");

//Get the first worksheet in the book
Worksheet worksheet = workbook.getWorksheets().get(0);

//Set the tab color
worksheet.setTabColor(Color.getRed());

//Save the Excel file
workbook.save(dataPath + "AsposeColoredTab_Out.xls");

Download Source Code

Feedback and Suggestions

  • Many more examples are available at Aspose Docs.
  • Raise your queries and suggest more examples via Aspose Forums or via this social coding site.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.