删除 ActiveX 控件
Contents
[
Hide
]
删除 ActiveX 控件
Aspose.Cells 提供从工作簿中删除 ActiveX 控件的功能。为此,API 提供了形状.RemoveActiveXControl方法。下面的代码片段演示了使用形状.RemoveActiveXControl方法来删除 ActiveX 控件。
示例代码
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
//Source directory | |
string sourceDir = RunExamples.Get_SourceDirectory(); | |
//Output directory | |
string outputDir = RunExamples.Get_OutputDirectory(); | |
// Create a workbook | |
Workbook wb = new Workbook(sourceDir + "sampleUpdateActiveXComboBoxControl.xlsx"); | |
// Access first shape from first worksheet | |
Shape shape = wb.Worksheets[0].Shapes[0]; | |
// Access ActiveX ComboBox Control and update its value | |
if (shape.ActiveXControl != null) | |
{ | |
// Remove Shape ActiveX Control | |
shape.RemoveActiveXControl(); | |
} | |
// Save the workbook | |
wb.Save(outputDir + "RemoveActiveXControl_our.xlsx"); |