Gets the XML DOM element corresponding to the Visio document's XML code that describes the imported shape.
Namespace: MindFusion.Diagramming.Wpf.Import
Assembly: MindFusion.Diagramming.Wpf.VisioImport
C# 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.
The 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) XmlNode myPropVal = vdxCode.SelectSingleNode("vdx:Prop[vdx:Label='MyProperty']/vdx:Value", ns); |