我希望有一种方法可以将Excel-DNA插件中的自定义数据保存到工作簿中。
用户从自定义Excel-DNA表单中输入的内容。
我意识到这可以保存到单元格中,但我不希望用户查看或更改数据..
是否有将自定义XML文件附加到工作簿或添加隐藏工作表的方法?
詹姆斯
答案 0 :(得分:4)
您可以使用Workbook.CustomXMLParts执行此操作:请参阅
Custom XML Parts Overview
答案 1 :(得分:2)
对于那些感兴趣的人,以下工作来自Excel-DNA功能区按钮:
Microsoft.Office.Interop.Excel.Application excelApp = (Microsoft.Office.Interop.Excel.Application)ExcelDnaUtil.Application;
Microsoft.Office.Interop.Excel.Workbook workbook = excelApp.ActiveWorkbook;
System.Collections.IEnumerator enumerator = workbook.CustomXMLParts.SelectByNamespace("http://schemas.microsoft.com/vsto/samplestest").GetEnumerator();
enumerator.Reset();
if (!(enumerator.MoveNext())) {
string xmlString1 = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>" +
"<employees xmlns=\"http://schemas.microsoft.com/vsto/samplestest\">" +
"<employee>" +
"<name>Surender GGG</name>" +
"<hireDate>1999-04-01</hireDate>" +
"<title>Manager</title>" +
"</employee>" +
"</employees>";
Office.CustomXMLPart employeeXMLPart = workbook.CustomXMLParts.Add(xmlString1);
} else {
Office.CustomXMLPart a = (Office.CustomXMLPart)enumerator.Current;
a.NamespaceManager.AddNamespace("x", "http://schemas.microsoft.com/vsto/samplestest");
MessageBox.Show(a.SelectSingleNode("/x:employees/x:employee/x:name").Text);
MessageBox.Show(a.XML);
}
首次添加xml文档,第二次检索它。您可以保存工作簿和重新开始确认它仍然存在..
詹姆斯