Utilizzo dell'effetto bagliore di forma o grafico
Contents
[
Hide
]
Possibili scenari di utilizzo
Aspose.Cells fornisce ilForma.Glow proprietà insieme aEffetto bagliore class per lavorare con l’effetto bagliore della forma o del grafico. IlEffetto baglioreclass contiene le seguenti proprietà che possono essere impostate per ottenere risultati diversi in base ai requisiti dell’applicazione.
Utilizzo dell’effetto bagliore di forma o grafico
Il codice di esempio seguente carica il filefile excel di origine e accede alla prima forma nel primo foglio di lavoro e imposta le proprietà secondarie diForma.Glow property e quindi salva la cartella di lavoro infile excel di output.
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 | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Load your source excel file | |
Workbook wb = new Workbook(dataDir + "sample.xlsx"); | |
// Access first worksheet | |
Worksheet ws = wb.Worksheets[0]; | |
// Access first shape | |
Shape sh = ws.Shapes[0]; | |
// Set the glow effect of the shape, Set its Size and Transparency properties | |
GlowEffect ge = sh.Glow; | |
ge.Size = 30; | |
ge.Transparency = 0.4; | |
// Save the workbook in xlsx format | |
wb.Save(dataDir + "output_out.xlsx"); |