Excel管理控件Aspose.Cells開發(fā)者指南(二十二):添加自定義XML部件并通過ID選擇它們
Aspose.Cells for .NET是Excel電子表格編程API,可加快電子表格管理和處理任務(wù),支持構(gòu)建具有生成,修改,轉(zhuǎn)換,呈現(xiàn)和打印電子表格功能的跨平臺應(yīng)用程序。
在接下來的系列教程中,將為開發(fā)者帶來Aspose.Cells for .NET的一系列使用教程,例如關(guān)于加載保存轉(zhuǎn)換、字體、渲染、繪圖、智能標(biāo)記等等。本文將講解如何添加自定義XML部件并通過ID選擇它們。
第五章:關(guān)于工作簿的使用
▲第一節(jié):添加自定義XML部件并通過ID選擇它們
自定義XML部件是存儲在Microsoft Excel文檔中的XML數(shù)據(jù),供處理它們的應(yīng)用程序使用。目前尚無直接使用Microsoft Excel UI添加它們的方法。但是,可以通過各種方式以編程方式添加它們,例如,使用VSTO,使用Aspose.Cells等。如果要使用Aspose.Cells API添加自定義XML部件,請使用Workbook.CustomXmlParts.Add()方法。同時還可以使用CustomXmlPart.ID 屬性設(shè)置其ID 。同樣,如果要按ID選擇“自定義XML部件”,則可以使用 Workbook.CustomXmlParts.SelectByID()方法。
下面的示例代碼首先使用Workbook.CustomXmlParts.Add()方法添加四個Custom XML Parts。然后,使用CustomXmlPart.ID 屬性設(shè)置其ID。最后,它使用Workbook.CustomXmlParts.SelectByID()方法查找或選擇添加的自定義XML部件之一。
// Create empty workbook. Workbook wb = new Workbook(); // Some data in the form of byte array. // Please use correct XML and Schema instead. byte[] btsData = new byte[] { 1, 2, 3 }; byte[] btsSchema = new byte[] { 1, 2, 3 }; // Create four custom xml parts. wb.CustomXmlParts.Add(btsData, btsSchema); wb.CustomXmlParts.Add(btsData, btsSchema); wb.CustomXmlParts.Add(btsData, btsSchema); wb.CustomXmlParts.Add(btsData, btsSchema); // Assign ids to custom xml parts. wb.CustomXmlParts[0].ID = "Fruit"; wb.CustomXmlParts[1].ID = "Color"; wb.CustomXmlParts[2].ID = "Sport"; wb.CustomXmlParts[3].ID = "Shape"; // Specify search custom xml part id. String srchID = "Fruit"; srchID = "Color"; srchID = "Sport"; // Search custom xml part by the search id. Aspose.Cells.Markup.CustomXmlPart cxp = wb.CustomXmlParts.SelectByID(srchID); // Print the found or not found message on console. if (cxp == null) { Console.WriteLine("Not Found: CustomXmlPart ID " + srchID); } else { Console.WriteLine("Found: CustomXmlPart ID " + srchID); }
同時還可以參閱下面給出的代碼的控制臺輸出以供參考。
Found: CustomXmlPart ID Sport
還想要更多嗎?您可以點擊閱讀【2019 · Aspose最新資源整合】,查找需要的教程資源。如果您有任何疑問或需求,請隨時加入Aspose技術(shù)交流群(642018183),我們很高興為您提供查詢和咨詢。