如何从 MS Word 访问表格中具有不同单元格宽度的列
我正在尝试从表格中的第一列获取单元格。在“Foreach(Cells c in rng.Tables[1].Columns[1].Cells)
”中出现异常,因为该表包含具有混合单元格宽度的列。
例如:在第一行中,有 4 个单元格,在第二行中,只有 2 个单元格(2 个单元格合并在一起)
错误消息:“无法访问此集合中的各个列,因为表格具有混合单元格宽度。< /强>”
Document oDoc = open word document
foreach (Paragraph p in oDoc.Paragraphs)
{
Range rng = p.Range;
/*
*/
foreach (Cell c in rng.Tables[1].Columns[1].Cells)
{
//....
}
}
I am trying to get the cells from 1st column in a table. Getting exception in the "Foreach(Cells c in rng.Tables[1].Columns[1].Cells)
" because the table contains columns that have mixed cell widths.
for eg: in first row, there are 4 cells and in second row, there are only 2 cells (2 cells merged together)
Error Message: "Cannot access individual columns in this collection because the table has mixed cell widths."
Document oDoc = open word document
foreach (Paragraph p in oDoc.Paragraphs)
{
Range rng = p.Range;
/*
*/
foreach (Cell c in rng.Tables[1].Columns[1].Cells)
{
//....
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用像这样的 for 循环来迭代所有单元格,而不是在第二个循环中使用 foreach 循环:
Instead of using a foreach loop in your second loop, can you instead use a for loop like so to iterate over all cells: