开发环境:
Windows 11 家庭中文版(22000.376)
IDE:Microsoft Visual Studio Enterprise 2019 版本 16.11.7
SDK:.NET 5.0/.net4.7.2
spire.presentation 6.11.5
WPS 11.1.0.11194
具体情况:设置字体为微软雅黑不成功。
代码:工程文件见邮件。
......
//Add text to the shape
textShape.AppendTextFrame(headText);
//Set the font and fill style of the text
TextRange textRange = textShape.TextFrame.TextRange;
textRange.Fill.FillType = FillFormatType.Solid;
textRange.Fill.SolidColor.Color = textColor;
textRange.EffectDag.OuterShadowEffect = this.GetTextShadow();
textRange.IsBold = TriState.True;
textRange.FontHeight = fontHeight;
textRange.EastAsianFont = new TextFont("微软雅黑");
......