Gets the XML DOM element corresponding to the Visio document's XML code that describes the imported shape.
Namespace: MindFusion.Diagramming.Import
Assembly: MindFusion.Diagramming.Import.Visio
SyntaxC#
Copy Code
|
|---|
public XmlNode ShapeXml { get; } |
Visual Basic
Copy Code
|
|---|
Public ReadOnly Property ShapeXml As XmlNode |
An XmlNode object corresponding to the section of the VDX document which describes the imported shape.
ExampleThe following sample shows how to read a custom property value defined in Visio by handling the ShapeImported event.
C#
Copy Code
|
|---|
private void ShapeImported(object sender, ShapeImportedEventArgs e) |
See Also