如何使用C#读取具有不同单元格宽度的MS字表内容

时间:2012-08-22 07:52:19

标签: c# ms-word

我正在使用C#阅读MS Word表格内容,  但我不知道如何获得合并的单元格信息。 像这样的表:    

     ---------------------
     | c(1,1)|   c(1,2)  | 
     |--------------------
     | c(2,1)   |  c(2,2)|
|-------------------- | c(3,1) | |-------------------|
 单元格c(3,1)是合并的单元格,我无法获取信息。 我的代码:

for (int i = 1; i <= doc.Tables.Count; i++)
{
    Microsoft.Office.Interop.Word.Table nowTable = doc.Tables[i];
    for (int rowPos = 1; rowPos <= nowTable.Rows.Count; r
    {
        for (int columPos = 1; columPos <= nowTable.Colum)
        {

            String strContent = nowTable.Cell(rowPos, columPos).Range.Text;                
        }
    }
}

0 个答案:

没有答案