Exemple #1
0
        public void SaveAsSvg(string path, int width = 800, int height = 600, bool isDocument = true)
        {
            var svgString = GridViewExporter.ExportToSvgString(this, width, height, isDocument);

            using (var f = new StreamWriter(path))
            {
                f.Write(svgString);
            }
        }
        public static void ExportToSvg(GridView gridView, string path, int width, int height, bool isDocument)
        {
            var svgString = GridViewExporter.ExportToSvgString(gridView, width, height, isDocument);

            using (var f = new StreamWriter(path))
            {
                f.Write(svgString);
            }
        }