I'm using PatternFill.CreateSolidFill to add colors to some of my spreadsheet cells, and it works fine.
But when I come to reset those colors back to 'normal' , their borders have gone:
Here, I apply the fill to some cells, but want to reset the color where the formatting rules does not apply. I am applying a solid fill, like:
PatternFill.CreateSolidFill(ThemableColor.FromArgb(255, 255, 255, 255))
..but this is where the border goes away.
How should I reset the border as well as the original color ?
Thanks