Lavorare con il ThreeDFormat di Shape o Chart
Contents
[
Hide
]
Possibili scenari di utilizzo
Aspose.Cells fornisce ilShape.ThreeDFormatproprietà per lavorare con il formato 3D della forma o del grafico. Contiene diverse proprietà secondarie che è possibile impostare per ottenere risultati diversi in base alle proprie esigenze.
La schermata seguente mostra l’interfaccia Excel Microsoft per impostare il formato 3D della forma.
Lavorare con il ThreeDFormat di Shape o Chart
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 diShape.ThreeDFormatproprietà e quindi salva la cartella di lavoro nel filefile excel di output.
Codice d’esempio
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-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getSharedDataDir(WorkingWithThreeDFormat.class) + "articles/"; | |
//Load excel file containing a shape | |
Workbook wb = new Workbook(dataDir + "WorkingWithThreeDFormat_in.xlsx"); | |
//Access first worksheet | |
Worksheet ws = wb.getWorksheets().get(0); | |
//Access first shape | |
Shape sh = ws.getShapes().get(0); | |
//Apply different three dimensional settings | |
ThreeDFormat n3df = sh.getThreeDFormat(); | |
n3df.setContourWidth(17); | |
n3df.setExtrusionHeight(32); | |
n3df.setTopBevelType(BevelType.HARD_EDGE); | |
n3df.setTopBevelWidth (30); | |
n3df.setTopBevelHeight(30); | |
//Save the output excel file in xlsx format | |
wb.save(dataDir + "WorkingWithThreeDFormat_out.xlsx"); |