Spire.XLS 11.11.2

.NET 5.0 .NET Standard 2.0 .NET Framework 2.0
There is a newer version of this package available.
See the version list below for details.
dotnet add package Spire.XLS --version 11.11.2
NuGet\Install-Package Spire.XLS -Version 11.11.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Spire.XLS" Version="11.11.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Spire.XLS --version 11.11.2
#r "nuget: Spire.XLS, 11.11.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Spire.XLS as a Cake Addin
#addin nuget:?package=Spire.XLS&version=11.11.2

// Install Spire.XLS as a Cake Tool
#tool nuget:?package=Spire.XLS&version=11.11.2

.NET API for Processing Excel Documents

Product Page | Documentation | Examples | Forum | Temporary License | Customized Demo

Spire.XLS for .NET is a professional Excel .NET API that can be used to create, read, write, convert and print Excel files in any type of .NET ( C#, VB.NET, ASP.NET, .NET Core, .NET 5.0, MonoAndroid and Xamarin.iOS) application without installing Microsoft Office.

The API supports both the old Excel 97-2003 format (.xls) and the new Excel 2007, Excel 2010, Excel 2013, Excel 2016 and Excel 2019 (.xlsx, .xlsb, .xlsm), along with Open Office(.ods) format. It features fast and reliably compared with developing your own spreadsheet manipulation solution or using Microsoft Automation.

100% Standalone .NET API

Spire.XLS for .NET is a 100% standalone Excel .NET library without requiring Microsoft Excel or Microsoft Office to be installed on the system.

Freely Operate Excel Files

Powerful & High Quality Excel File Conversion

Examples

Create an Excel File in C#

using Spire.Xls;
using System.IO;
namespace CreateExcelFiles
{
    class Program
    {

        static void Main(string[] args)
        {
            //A: Dynamically create Excel file and save it to stream
            Workbook wbToStream = new Workbook();
            Worksheet sheet = wbToStream.Worksheets[0];
            sheet.Range["C10"].Text = "The sample demonstrates how to save an Excel workbook to stream.";
            FileStream file_stream = new FileStream("To_stream.xls", FileMode.Create);
            wbToStream.SaveToStream(file_stream);
            file_stream.Close();
            System.Diagnostics.Process.Start("To_stream.xls");

            //B. Load Excel file from stream
            Workbook wbFromStream = new Workbook();
            FileStream fileStream = File.OpenRead("sample.xls");
            fileStream.Seek(0, SeekOrigin.Begin);
            wbFromStream.LoadFromStream(fileStream);
            wbFromStream.SaveToFile("From_stream.xls", ExcelVersion.Version97to2003);
            fileStream.Dispose();
            System.Diagnostics.Process.Start("From_stream.xls");
        }

    }
}

Convert Excel to PDF in C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Spire.Xls;

namespace ToPDF
{
    class Program
    {
        static void Main(string[] args)
        {
            Workbook workbook = new Workbook();
            workbook.LoadFromFile("Sample.xlsx", ExcelVersion.Version2010);
            workbook.SaveToFile("result.pdf", Spire.Xls.FileFormat.PDF);
         }
    }
}

Convert Excel to Image in C#

using Spire.Xls;
namespace Xls2Image

{
    class Program
    {
        static void Main(string[] args)
        {
            Workbook workbook = new Workbook();
            workbook.LoadFromFile(@"..\..\test.xls");
            Worksheet sheet = workbook.Worksheets[0];
            sheet.SaveToImage("sample.jpg");
        }
    }
}

Product Page | Documentation | Examples | Forum | Temporary License | Customized Demo

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net20 is compatible.  net35 was computed.  net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid is compatible. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios is compatible. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (13)

Showing the top 5 NuGet packages that depend on Spire.XLS:

Package Downloads
HBInformationBase

Huabin science and technology basic information database

KCore_bfagundes

My personal library to work SAP projects.

Balcony.Framework

Balcony's Framework

Nvideo.Infrastructure

Package Description

TrinityText.Utilities

Trinity Text utilities layer

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
13.5.0 1,497 5/12/2023
13.4.0 7,179 4/10/2023
13.3.2 7,881 3/15/2023
13.2.4 15,636 2/16/2023
13.1.1 12,655 1/17/2023
12.12.3 12,204 12/23/2022
12.11.3 11,772 11/25/2022
12.10.1 17,529 10/20/2022
12.9.2 10,970 9/23/2022
12.8.1 20,880 8/17/2022
12.7.1 20,071 7/13/2022
12.6.1 22,846 6/13/2022
12.5.3 9,821 5/26/2022
12.5.1 9,300 5/13/2022
12.4.1 17,674 4/15/2022
12.3.8 36,166 3/23/2022
12.3.2 9,442 3/4/2022
12.1.0 16,197 1/24/2022
11.12.2 28,795 12/17/2021
11.11.2 22,846 11/25/2021
11.10.5 61,720 10/28/2021
11.10.4 16,475 10/25/2021
11.9.3 17,356 9/16/2021
11.9.2 7,424 9/14/2021
11.8.0 27,401 8/6/2021
11.7.0 18,031 7/8/2021
11.6.1 10,920 6/10/2021
11.4.6 17,812 4/30/2021
11.4.0 20,783 4/7/2021
11.3.4 13,241 3/12/2021
11.2.6 14,903 2/23/2021
11.2.3 4,675 2/8/2021
11.1.0 9,970 1/22/2021
10.12.0 29,622 12/3/2020
10.11.7 7,857 11/18/2020
10.11.2 4,534 11/6/2020
10.10.6 17,353 10/15/2020
10.9.16 6,407 9/28/2020
10.9.0 15,699 9/2/2020
10.8.3 10,255 8/11/2020
10.7.2 31,229 7/8/2020
10.5.7 30,114 5/21/2020
10.4.9 13,968 4/23/2020
10.3.8 9,267 3/26/2020
10.3.0 37,245 3/2/2020
10.2.8 6,416 2/20/2020
10.1.8 22,933 1/21/2020
10.1.1 8,929 1/8/2020
9.12.20 19,077 12/19/2019
9.11.14 12,658 11/26/2019
9.11.2 7,956 11/8/2019
9.10.12 8,341 10/25/2019
9.10.4 7,912 10/11/2019
9.9.13 8,944 9/26/2019
9.9.5 8,642 9/12/2019
9.9.0 6,942 9/2/2019
9.8.11 5,317 8/23/2019
9.8.5 4,849 8/15/2019
9.7.0 11,371 7/11/2019
9.6.12 4,756 7/1/2019
9.6.7 3,563 6/19/2019
9.6.1 3,748 6/6/2019
9.5.11 3,975 5/23/2019
9.5.6 2,362 5/16/2019
9.5.4 4,007 5/13/2019
9.5.0 4,678 5/1/2019
9.4.6 24,028 4/15/2019
9.4.0 9,648 4/2/2019
9.3.10 12,267 3/21/2019
9.3.4 1,794 3/13/2019
9.2.11 19,662 2/27/2019
9.2.8 2,521 2/21/2019
9.1.22 14,376 2/1/2019
9.1.14 3,418 1/24/2019
9.1.0 8,550 1/10/2019
8.12.11 8,766 12/28/2018
8.12.3 4,537 12/11/2018
8.11.6 10,085 11/21/2018
8.11.2 2,976 11/13/2018
8.10.7 5,091 10/31/2018
8.10.2 6,554 10/12/2018
8.9.8 4,575 9/30/2018
8.9.3 3,650 9/18/2018
8.8.5 4,539 8/29/2018
8.8.1 26,492 8/8/2018
8.8.0 2,555 8/1/2018
8.7.2 3,559 7/12/2018
8.6.6 4,336 6/28/2018
8.6.1 3,562 6/21/2018
8.5.1 5,367 5/11/2018
8.0.0 5,549 2/8/2018
7.12.150 4,629 2/6/2018
7.12.144 11,480 1/12/2018
7.12.140 3,403 12/28/2017
7.12.130 2,752 12/14/2017
7.12.125 3,519 12/4/2017
7.12.109 3,122 11/7/2017
7.12.100 2,418 10/23/2017
7.12.90 5,624 9/28/2017
7.12.76 4,742 8/22/2017
7.12.69 2,597 8/11/2017
7.12.55 3,926 7/18/2017
7.12.43 1,740 7/3/2017
7.12.27 6,118 6/9/2017
7.12.19 3,943 5/26/2017
7.12.11 4,085 5/9/2017
7.12.7 2,380 5/4/2017
7.12.0 11,234 4/24/2017
7.11.59 8,413 2/28/2017
7.11.49 5,765 1/24/2017