如何在MS Word表格单元格中将文本的一部分加粗?

时间:2009-06-27 11:21:42

标签: c# ms-word formatting cell

我有一个使用MS Word文档的C#应用​​程序。我有表格,其中单元格中的某些文字需要粗体。有办法吗?

1 个答案:

答案 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标签。