I created a font and set it as the default font of the grid using SetDefFont(), but I do not see my font being used. What is going on?
The most likely reason is that the font is going out of scope before the grid can use it to draw the text in the cells. When you create a GDI object for use with the Ultimate Grid, you should make that object a member of your derived grid class. Then it will always be available to the grid. In your destructor for your grid class, you’ll destroy the object.