What is the correct way to redraw the grid after a

We have a button in our program which allows the user to increase or decrease the font size.  This same font size is used for all components.

The font change works OK but when the font gets too large, the row sizes are too small and things get clipped.
I have experimented with Invalidate, Hide/Show, update etc.

Is there a clean way to completely redraw the grid with a font size increase ?


Call grid.AutoSizeRows() if you want that the size updates after you changed the font.

Thanks, that worked great.