Spire.XLS 7.11 starts to support save Excel to SVG file format

Spire.XLS

We are glad to announce that a release version of Spire.XLS 7.11 is available today. On this new version of Spire.XLS, our develop team add a new feature to save Excel worksheet to SVG (Scalable Vector Graphics). View the details as below:

New Feature:

  • Supports to convert Excel to SVG file format.
  • for (int i = 0; i < workbook.Worksheets.Count; i++)
                {
                    FileStream fs = new FileStream(string.Format("sheet7{0}.svg", i), FileMode.Create);
                    workbook.Worksheets[i].ToSVGStream(fs, 0, 0, 0, 0);
                    fs.Flush();
                    fs.Close();
                }
    

Welcome to experience Spire.XLS 7.11 with downloading here:

http://www.e-iceblue.com/Download/download-excel-for-net-now.html