You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using a template file for my application with a default sheet name. I need to rename the sheet name when I write my new file. So I have added a setName method in the Sheet class.
/** * Rename this sheet * @param newName The new name of the sheet */publicvoidsetName(StringnewName) {
this.name = newName;
}
Is it possible to add this method ?
Thank you in advance.
The text was updated successfully, but these errors were encountered:
I am using a template file for my application with a default sheet name. I need to rename the sheet name when I write my new file. So I have added a
setName
method in the Sheet class.Is it possible to add this method ?
Thank you in advance.
The text was updated successfully, but these errors were encountered: