Convertir une forme Visio en PDF
Contents
[
Hide
]
** Convertir une forme visio en pdf**
La méthode ToPdf exposée par leForme class peut être utilisé pour convertir en pdf.
Le code ci-dessous montre comment :
- Charger un échantillon diagram.
- obtenir une page particulière.
- obtenir une forme particulière.
- convertir la forme en pdf.
Forme au format PDF
Utilisez le code suivant dans votre application .net pour convertir une forme visio en pdf.
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-diagram/Aspose.Diagram-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir_Shapes(); | |
// Call a Diagram class constructor to load the VSDX diagram | |
Diagram diagram = new Diagram(dataDir + "ShapeToPdf.vsdx"); | |
// Get a particular page | |
Page page = diagram.Pages[0]; | |
// Get a particular shape | |
Shape shape = page.Shapes[0]; | |
// Shape to Pdf | |
shape.ToPdf("out.pdf"); |