我有一个使用MS Word文档的C#应用程序。我有表格,其中单元格中的某些文字需要粗体。有办法吗?
答案 0 :(得分:1)
我假设您使用的是Microsoft Office Interop。
我找到的例子: http://www.c-sharpcorner.com/Forums/ShowMessages.aspx?ThreadID=48632说:
using Microsoft.Office.Interop.Word;
using Microsoft.Office.Core;
Document varDoc = varWord.Documents.Add(ref varMissing, ref varMissing, ref varMissing, ref varTrueValue);
varDoc.Activate();
varDoc.ActiveWindow.ActivePane.View.SeekView = WdSeekView.wdSeekCurrentPageHeader;
varDoc.ActiveWindow.Selection.Font.Bold = 1;
同样在你的App中使用它。
否则,如果您使用的是HTML表格,那么使用
就是一种肮脏的方式html标签。