I want to know what are the properties of the font of the grid, like font family.
When I use,
Grid.DisplayLayout.Appearance.FontData.Name
I get Default.
How can I get these properies?
I haven't had to use this property for anything, but below would be my guess.
FontFamily grid_fontfamily = ultraGrid1.Font.FontFamily;
That looks good.
Thanks.