Aggiungi una filigrana con Word Art al grafico
Contents
[
Hide
]
Aspose.Cells - Aggiungi una filigrana con Word Art al grafico
Puoi usare WordArt per aggiungere effetti speciali al testo nei fogli di calcolo. Ad esempio, distende un titolo, decora il testo, fa adattare il testo a una forma preimpostata o applica il testo interessato all’area di trama di un grafico come un watermark. Il WordArt diventa un oggetto che puoi spostare o posizionare nei fogli di calcolo per aggiungere decorazioni.
Java
//Instantiate a new workbook.
//Open the existing excel file.
Workbook workbook = new Workbook(dataDir + "AsposeChart.xls");
//Get the chart in the first worksheet.
com.aspose.cells.Chart chart = workbook.getWorksheets().get(0).getCharts().get(0);
//Add a WordArt watermark (shape) to the chart's plot area.
com.aspose.cells.Shape wordart = chart.getShapes().addTextEffectInChart(MsoPresetTextEffect.TEXT_EFFECT_2,
"CONFIDENTIAL", "Arial Black", 66, false, false, 1200, 500, 2000, 3000);
//Get the shape's fill format.
FillFormat wordArtFormat = wordart.getFill();
//Set the transparency.
wordArtFormat.setTransparency(0.9);
//Make the line invisible.
wordart.setHasLine(false);
//Save the excel file.
workbook.save(dataDir + "AsposeChartWatermarked_Out.xls", SaveFormat.EXCEL_97_TO_2003);
Scarica il codice in esecuzione
Scarica il codice di esempio
Per ulteriori dettagli, visita Aggiungi una filigrana con WordArt al grafico.