Convert a Visio Shape To Html
Contents
[
Hide
]
**Convert a visio shape to html **
The ToHTML method exposed by the Shape class can be used to convert to html.
The code below shows how to:
- Load a sample diagram.
- get a particular page.
- get a particular shape.
- convert shape to html.
Shape to Html
Use the following code in your .net application to convert a visio shape to html.
// 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 + "ShapeToHtml.vsdx");
// Get a particular page
Page page = diagram.Pages[0];
// Get a particular shape
Shape shape = page.Shapes[0];
// Shape to HTML
Aspose.Diagram.Saving.HTMLSaveOptions hs = new Aspose.Diagram.Saving.HTMLSaveOptions();
shape.ToHTML("out.htm", hs);