我需要阅读Worksheet.CustomProperies。有没有办法读取这个属性?
我也尝试过使用获取工作簿和工作表的 XmlDocument
XmlDocument xlDoc = ws.WorksheetXml;
给我:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
<dimension ref="A3:K24" />
<sheetViews>
<sheetView tabSelected="1" workbookViewId="0"><selection activeCell="H14" sqref="H14" /></sheetView>
</sheetViews>
<sheetFormatPr defaultRowHeight="15" />
<cols></cols><sheetData />
<pageMargins left="0.7" right="0.7" top="0.75" bottom="0.75" header="0.3" footer="0.3" />
<pageSetup orientation="portrait" horizontalDpi="4294967293" verticalDpi="4294967293" r:id="rId2" />
**<customProperties><customPr name="My_CustomProperty" r:id="rId3" /></customProperties>**
</worksheet>
我可以在那里看到一个 CustomProperty,但看不到 CustomProperty 值。当我转到 CustomProperty bin 文件(压缩 xlsx 并提取内容)时,值就在那里。
我在这里上传了文件