I'm scratching my head over this one. I know how to set the background of a cell -- pretty straight-forward, but a new requirement that has come down is that the BORDER cannot be changed.
So, normally if I wanted to set the cell's background, I'd do something like...
var interior = someCell.Interior;
interior.Color = someColor;
That works, but the borders change as well. The idea is to change only the actual "background" of the cell. I tried using the PatternColor property on interior as well with Pattern = XlPatternSolid, also to no avail.
Is there a good way to do this, such that we ONLY change the background color -- not the borders?