It would be helpful if you could add a feature to set the active tab of a workbook.
I would implement this by making the following changes to Workbook.java
private int activeTab = 0; // global variable
public void setActiveTab(int tab) {
this.activeTab = tab;
}
And make the following change to line 187 in the private writeWorkbookFile method by changing
"<workbookView activeTab=\"0\"/>" +
to
"<workbookView activeTab=\"" + activeTab + "\"/>" +
It would be helpful if you could add a feature to set the active tab of a workbook.
I would implement this by making the following changes to Workbook.java
private int activeTab = 0; // global variable
And make the following change to line 187 in the private writeWorkbookFile method by changing
"<workbookView activeTab=\"0\"/>" +
to"<workbookView activeTab=\"" + activeTab + "\"/>" +