We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
the initial "BackgroundColor"-value of a cell is null.
How can I reset a (red colored) cell?
Currently I'm able to set the background color to white ("#FFFFFF"). But in this case there is no border at the right and bottom.
Following call leaves the cell in red color:
Sheet.SetFormat(Sheet.Selection.Regions, new CellFormat() { BackgroundColor = null });
Is there any solution for this problem?
The text was updated successfully, but these errors were encountered:
Hi @mawagi7 this is an oversight by me, and it isn't currently possible.
For now, you could do:
Sheet.SetFormat(Sheet.Selection.Regions, new CellFormat() { BackgroundColor = " "});
and it won't show a bg color.
I'll work on a fix for this, thanks for the feedback.
Sorry, something went wrong.
Thanks for the fast reply and your great work.
No branches or pull requests
Hi,
the initial "BackgroundColor"-value of a cell is null.
How can I reset a (red colored) cell?
Currently I'm able to set the background color to white ("#FFFFFF"). But in this case there is no border at the right and bottom.
Following call leaves the cell in red color:
Sheet.SetFormat(Sheet.Selection.Regions, new CellFormat() { BackgroundColor = null });
Is there any solution for this problem?
The text was updated successfully, but these errors were encountered: