I m creating a custom Microsoft Word mailmerge console application using C#. My only problem is trying to use the InsertSymbol command (from Microsoft.Office.Interop.Word). The purpose is to drop in a checked box symbol if the field value is true, and an empty box if the field value is false.
微软对这一指令的定义如下:here,没有具体实例。
我指挥的方法是:
Object oFont = "Wingdings";
Object oUnicode = "true";
Object oBias = Word.WdFontBias.wdFontBiasDontCare;
oWord.Selection.InsertSymbol(254, ref oFont, ref oUnicode,ref oBias);
当我试图管理这一指挥时,我发现错误“这不是一个有效的编号”。 这一指挥没有很多实例,我希望提出一些想法。 感谢。