GemBoxLtd / GemBox.Spreadsheet.Examples

GemBox.Spreadsheet is a .NET component that enables you to read, write, convert, and print spreadsheet files (XLSX, XLS, XLSB, CSV, HTML, and ODS) from .NET applications in a simple and efficient way.

Home Page:https://www.gemboxsoftware.com/spreadsheet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NuGet version NuGet downloads Visual Studio Marketplace rating

What is GemBox.Spreadsheet?

GemBox.Spreadsheet is a .NET component that enables you to read, write, convert, and print spreadsheet files (XLSX, XLS, XLSB, CSV, HTML, and ODS) from .NET applications.

With GemBox.Spreadsheet you get a fast and reliable component that's easy to use and doesn't depend on Microsoft Excel. It requires only .NET and it's much faster than Microsoft Office Automation!

GemBox.Spreadsheet Features

Get Started

You are not sure how to start working with Excel spreadsheets in .NET using GemBox.Spreadsheet? Check the code below that shows how to create an XLSX file from scratch and write 'Hello World!' in first cell

// If using Professional version, put your serial key below.
SpreadsheetInfo.SetLicense("FREE-LIMITED-KEY");
        
// Create a new empty workbook.
var workbook = new ExcelFile();

// Add a worksheet to it.
var worksheet = workbook.Worksheets.Add("Sheet1");

// Write to the first cell.
worksheet.Cells["A1"].Value = "Hello World!";

// Save the workbook as Excel's XLSX file.
workbook.Save("Writing.xlsx");

For more GemBox.Spreadsheet code examples and demos, please visit our examples page.

Installation

You can download GemBox.Spreadsheet from NuGet 📦 or from BugFixes 🛠️.

Resources

About

GemBox.Spreadsheet is a .NET component that enables you to read, write, convert, and print spreadsheet files (XLSX, XLS, XLSB, CSV, HTML, and ODS) from .NET applications in a simple and efficient way.

https://www.gemboxsoftware.com/spreadsheet

License:MIT License


Languages

Language:C# 68.5%Language:Visual Basic .NET 19.6%Language:HTML 7.8%Language:ASP.NET 1.5%Language:Dockerfile 0.7%Language:PHP 0.7%Language:Classic ASP 0.6%Language:Python 0.6%