我需要利用开放式xml sdk过滤表栏的内容(在MS-word文件中)。 我能够使用<条码>参比=表格浏览表列内容(显示)。 ElementAt<OpenXmlElement>0. InnerText
What I need to do is split the content of column into muliple strings for eg: column
abcd
efgh
我正在使用<条码>参引=表格浏览。 ElementAt<OpenXmlElement>0. InnerText
我需要将<代码>abcd和efgh
分为不同的座标。
我使用的这部法典:
foreach (Table table in tables)
{
foreach (TableRow tablerow in table.Descendants<TableRow>())
{
reference = tablerow.ElementAt<OpenXmlElement>(0).InnerText
}
}