Spire.Doc 中英文字体设置
Posted liuliang1999
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spire.Doc 中英文字体设置相关的知识,希望对你有一定的参考价值。
有时我们需要设置中文字体为宋体,西文字体为Times New Roman,对于这种情况,在Spire.Doc中可以如下处理
private void AddTextRange(Section section, Paragraph pragraph, string word, float fontSize, bool isBold, HorizontalAlignment alignType,float suojin)
{
TextRange textRange = pragraph.AppendText(word);
textRange.CharacterFormat.FontSize = fontSize;
textRange.CharacterFormat.Bold = isBold;
//中文字体
textRange.CharacterFormat.FontNameFarEast = "宋体";
//西文字体
textRange.CharacterFormat.FontNameNonFarEast = "Times New Roman";
pragraph.Format.HorizontalAlignment = alignType;
//缩进
pragraph.Format.FirstLineIndent = suojin;
}
以上是关于Spire.Doc 中英文字体设置的主要内容,如果未能解决你的问题,请参考以下文章
最新Spire.pdf Spire.Doc Spire.Xls等无水印使用
最新Spire.pdf Spire.Doc Spire.Xls等无水印使用