我有一个使用 MS Word 文档的 C# 应用程序。我有表格,其中单元格中的某些文本需要加粗。有没有办法做到这一点?
notnormal
问问题
3917 次
1 回答
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;
同样在您的应用程序中使用它。
否则,如果您使用的是 HTML 表格,那么一种肮脏的方法是使用
html标签。
于 2009-06-27T11:53:13.713 回答