Aggiungi controlli ActiveX utilizzando Aspose.Cells
Contents
[
Hide
]
È possibile aggiungere controlli ActiveX con Aspose.Cells utilizzando il fileShapeCollection.AddActiveXControl() metodo. Questo metodo accetta un parametroTipo di controlloche indica quale tipo di controllo ActiveX deve essere aggiunto all’interno di un foglio di lavoro. Ha i seguenti valori.
- ControlType.CheckBox
- ControlType.ComboBox
- ControlType.CommandButton
- ControlType.Image
- ControlType.Label
- ControlType.ListBox
- ControlType.RadioButton
- ControlType.ScrollBar
- ControlType.SpinButton
- ControlType.TextBox
- ControlType.ToggleButton
- ControlType.Unknown
Dopo aver aggiunto il controllo ActiveX all’interno della raccolta delle forme, è possibile accedere all’oggetto del controllo ActiveX tramiteShape.ActiveXControl property e quindi impostarne le varie proprietà.
Il codice di esempio seguente aggiunge il controllo ActiveX del pulsante di attivazione/disattivazione utilizzando Aspose.Cells.
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 | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create workbook object | |
Workbook wb = new Workbook(); | |
// Access first worksheet | |
Worksheet sheet = wb.Worksheets[0]; | |
// Add Toggle Button ActiveX Control inside the Shape Collection | |
Shape s = sheet.Shapes.AddActiveXControl(ControlType.ToggleButton, 4, 0, 4, 0, 100, 30); | |
// Access the ActiveX control object and set its linked cell property | |
ActiveXControl c = s.ActiveXControl; | |
c.LinkedCell = "A1"; | |
// Save the worbook in xlsx format | |
wb.Save(dataDir + "AddActiveXControls_out.xlsx", SaveFormat.Xlsx); |