SerializeSVG() public method

public SerializeSVG ( ) : System.Xml.Linq.XDocument
return System.Xml.Linq.XDocument
Ejemplo n.º 1
0
 void bExportVectors_Click(object sender, EventArgs e)
 {
     if (exportSvgDialog.ShowDialog() == DialogResult.OK)
     {
         State.SerializeSVG().Save(exportSvgDialog.FileName);
     }
 }