从单元格中获取内容,单词c#中无边框

时间:2019-06-04 10:21:15

标签: c# ms-word rtf file-conversion word-table

我尝试通过使用Range.ExportFragment函数以rtf格式获取单元格中的内容,但始终返回带有边框。如何仅获取内容?

我尝试使用边框可见属性,但是当将其加载到richtextbox时,边框仍然显示。

range.Borders[WdBorderType.wdBorderTop].Visible = false;
range.Borders[WdBorderType.wdBorderBottom].Visible = false;
range.Borders[WdBorderType.wdBorderLeft].Visible = false;
range.Borders[WdBorderType.wdBorderRight].Visible = false;

range.ExportFragment(tempFile, WdSaveFormat.wdFormatRTF);

richtextbox1.Rtf = File.ReadAllText(tempFile);

enter image description here

0 个答案:

没有答案