Aggiungi Word Art Watermark al foglio di lavoro usando Aspose.Cells
Contents
[
Hide
]
Aspose.Cells - Aggiungi Word Art Watermark al foglio di lavoro
Usa WordArt per aggiungere effetti speciali al testo nei fogli di calcolo. Ad esempio, estendi un titolo sulla parte superiore del file, decoralo, fai in modo che il testo si adatti a una forma preimpostata o applica il testo a un foglio Excel come sfondo. Il WordArt diventa un oggetto che puoi spostare o posizionare nei fogli di calcolo per aggiungere decorazioni.
Java
Workbook workbook = new Workbook();
//Get the first default sheet
Worksheet sheet = workbook.getWorksheets().get(0);
//Add Watermark
Shape wordart = sheet.getShapes().addTextEffect(MsoPresetTextEffect.TEXT_EFFECT_1,
"CONFIDENTIAL", "Arial Black", 50, false, true
, 18, 8, 1, 1, 130, 800);
//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 file
workbook.save(dataDir + "AsposeWatermark_Out.xls");
Scarica il codice in esecuzione
Scarica il codice di esempio
Per ulteriori dettagli, visita Aggiungi WordArt Watermark al foglio di lavoro.