Example #1
0
		//Save the diagram to disk or to a stream
		protected virtual void ExportToSvg(Stream stream)
		{
			SvgDocument svg = new SvgDocument();
			svg.AddDiagram(this);
			svg.Save(stream);
		}