Aggiorna i valori delle forme collegate
Contents
[
Hide
]
volte, hai una forma collegata nel tuo file Excel che è collegata a qualche cella. In Microsoft Excel, la modifica del valore della cella collegata modifica anche il valore della forma collegata. Funziona bene anche con Aspose.Cells se si desidera salvare la cartella di lavoro nel formato XLS o XLSX. Tuttavia, se desideri salvare la tua cartella di lavoro nel formato PDF o HTML, dovrai chiamareWorksheet.Shapes.UpdateSelectedValue() metodo per aggiornare il valore della forma collegata.
Esempio
Lo screenshot seguente mostra il file Excel di origine utilizzato nel codice di esempio riportato di seguito. Ha un’immagine collegata collegata alle celle da A1 a E4. Cambieremo il valore della cella B4 con Aspose.Cells e quindi chiameremoWorksheet.Shapes.UpdateSelectedValue()metodo per aggiornare il valore dell’immagine e salvarlo nel formato PDF.
Puoi scaricare ilfile Excel di origine e iluscita PDF dai link indicati.
C# codice per aggiornare i valori delle forme collegate
This file contains 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 workbook from source file | |
Workbook workbook = new Workbook(sourceDir + "sampleRefreshValueOfLinkedShapes.xlsx"); | |
// Access first worksheet | |
Worksheet worksheet = workbook.Worksheets[0]; | |
// Change the value of cell B4 | |
Cell cell = worksheet.Cells["B4"]; | |
cell.PutValue(100); | |
// Update the value of the Linked Picture which is linked to cell B4 | |
worksheet.Shapes.UpdateSelectedValue(); | |
// Save the workbook in PDF format | |
workbook.Save(outputDir + "outputRefreshValueOfLinkedShapes.pdf", SaveFormat.Pdf); |