我需要閱讀Worksheet.CustomProperies。有什麼方法可以讀取這些屬性?Worksheet.CustomProperites OpenXML
我也曾嘗試使用
XmlDocument xlDoc = ws.WorksheetXml;
得到一個簿和工作表中的XmlDocument給我:
<?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文件(Zip xlsx並提取內容)時,值就在那裏。
我已經上傳文檔here
你可以上傳文件的地方嗎? – emd
已上傳到此:https://www.dropbox.com/s/ljph3nnbmddycyn/Users_Template_12_22_Template.xlsx – Cannon