标签: c# office-interop
我有一个C#程序用Word文档中的标题替换剪贴板中的标题。它工作正常:selection.Paste();但是,更改字体大小和名称不起作用。下面是代码片段。任何帮助将不胜感激。
selection.Paste();
selection.Font.Size = 14; selection.Font.Name = "Arial"; selection.Paste();