Changing of the emergency font and font in styles

How to changing of the emergency font and font in styles

Issue: How to changing of the emergency font and font in styles (CADNET-1060).

Tips: To do this, use the DefaultFont field in the drawing.

Example:

using (CadImage cadImage = (CadImage)Image.Load(fileName))
{
cadImage.DefaultFont = "Microsoft JhengHei UI";
}
AND/OR
using (CadImage cadImage = (CadImage)Image.Load(fileName))
{
foreach (CadStyleTableObject style in cadImage.Styles)
{
style.PrimaryFontName = "Microsoft JhengHei UI";
}
}