How can I control the appearance of the displayed grid where cells have their Hidden property set to true? I've tried setting the Appearance property of the hidden cells to a new Appearance object but that had no effect. I assume that is because the cell is hidden. Also, changing the background of the grid had no effect so I assume the cell is being painted. What is left to change?
When you hide the cell, my guess is that what you see in that empty space it the row. Try setting the row.Appearance.BackColor.
Thanks for the reply Mike. I tried setting row.Appearance.BackColor but this changed the background color for all the cells in the row (hidden or not).