我在使用 openxml 时遇到字符元音变音的问题。字符串中的每个字符都使用 Arial,但 ä 使用 Calibri。我真的不知道为什么。
有人可以帮助我吗?
这是我的代码:
DocumentFormat.OpenXml.Wordprocessing.Run run = new DocumentFormat.OpenXml.Wordprocessing.Run();
RunProperties runProp = new RunProperties(); // Create run properties.
RunFonts runFont = new RunFonts(); // Create font
runFont.Ascii = "Arial"; // Specify font family
runProp.Append(runFont);
run.Append(runProp);
run.Append(new Text("Kapazität"));
您需要指定 RunFonts
对象的 HighAnsi
属性。
runFont.HighAnsi = "Arial";
如您所料,Ascii 字体名称仅考虑 ASCII 字符(以及非常短范围的 Unicode U+0000-U+007F)。变音字符位于“扩展”unicode 范围内,而 HighAnsi 负责该字符集的大部分内容。
我是一名优秀的程序员,十分优秀!