AD
Administrator
Syncfusion Team
May 29, 2003 04:57 PM UTC
System.Drawin.Font has several properties such as FontStyle, Name and others.
To initialize a GridFontInfo from such a font just set these properties manually in the GridFontInfo object.
Example:
System.Drawing.Font font;
style.Font.FontStyle = font.FontStyle;
style.Font.Size = font.SizeInPoints;
style.Font.FaceName = font.Name;
Stefan