ByteScout Data Extraction Suite - C# - Use rich formatting to create report with spreadsheet sdk - ByteScout

ByteScout Data Extraction Suite – C# – Use rich formatting to create report with spreadsheet sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Data Extraction Suite – C# – Use rich formatting to create report with spreadsheet sdk

How to use rich formatting to create report with spreadsheet sdk in C# with ByteScout Data Extraction Suite

Learning is essential in computer world and the tutorial below will demonstrate how to use rich formatting to create report with spreadsheet sdk in C#

These sample source codes on this page below are displaying how to use rich formatting to create report with spreadsheet sdk in C#. ByteScout Data Extraction Suite is the set that includes 3 SDK products for data extraction from PDF, scans, images and from spreadsheets: PDF Extractor SDK, Data Extraction SDK, Barcode Reader SDK. It can use rich formatting to create report with spreadsheet sdk in C#.

This prolific sample source code in C# for ByteScout Data Extraction Suite contains various functions and other necessary options you should do calling the API to use rich formatting to create report with spreadsheet sdk. Just copy and paste the code into your C# application’s code and follow the instructions. If you want to use these C# sample examples in one or many applications then they can be used easily.

Trial version of ByteScout Data Extraction Suite is available for free. Source code samples are included to help you with your C# app.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

Program.cs
      
using System; using System.Collections.Generic; using System.Drawing; using System.Text; using Bytescout.Spreadsheet; using Bytescout.Spreadsheet.Constants; using System.IO; using System.Diagnostics; namespace Using_rich_formatting_to_create_a_XLS_report { class Program { static void Main(string[] args) { // Create new Spreadsheet Spreadsheet document = new Spreadsheet(); // Add new worksheet Worksheet worksheet = document.Workbook.Worksheets.Add("AdvancedReport"); // Set Values worksheet.Cell(0, 0).Value = "Name"; worksheet.Cell(0, 1).Value = "Full Name"; Color headerColor = Color.FromArgb(75, 172, 198); Color contentColor = Color.FromArgb(141, 180, 227); // Set font bold for headers worksheet.Cell(0, 0).Font = new Font("Arial", 12, FontStyle.Bold); worksheet.Cell(0, 1).Font = new Font("Arial", 12, FontStyle.Bold); // Set back color for headers rows worksheet.Cell(0, 0).FillPattern = PatternStyle.Solid; worksheet.Cell(0, 0).FillPatternForeColor = headerColor; worksheet.Cell(0, 1).FillPattern = PatternStyle.Solid; worksheet.Cell(0, 1).FillPatternForeColor = headerColor; worksheet.Cell(6, 0).FillPattern = PatternStyle.Solid; worksheet.Cell(6, 0).FillPatternForeColor = headerColor; worksheet.Cell(6, 0).FontColor = Color.White; worksheet.Cell(6, 1).FillPattern = PatternStyle.Solid; worksheet.Cell(6, 1).FillPatternForeColor = headerColor; // Set back color for content rows for (int i = 1; i < 6; i++) { worksheet.Cell(i, 0).FillPattern = PatternStyle.Solid; worksheet.Cell(i, 0).FillPatternForeColor = contentColor; worksheet.Cell(i, 1).FillPattern = PatternStyle.Solid; worksheet.Cell(i, 1).FillPatternForeColor = contentColor; } worksheet.Cell(1, 0).Value = "Homer"; worksheet.Cell(1, 1).Value = "Homer Jay Simpson"; worksheet.Cell(2, 0).Value = "Marjorie"; worksheet.Cell(2, 1).Value = "Marjorie Marge Simpson (Bouvier)"; worksheet.Cell(3, 0).Value = "Bartholomew"; worksheet.Cell(3, 1).Value = "Bartholomew Jojo Bart Simpson"; worksheet.Cell(4, 0).Value = "Lisa"; worksheet.Cell(4, 1).Value = "Lisa Marie Simpson"; worksheet.Cell(5, 0).Value = "Margaret"; worksheet.Cell(5, 1).Value = "Margaret Maggie "; worksheet.Cell(6, 0).Value = "Count"; worksheet.Cell(6, 1).Value = "5"; worksheet.Columns[1].Width = 250; worksheet.Columns[2].Width = 250; // delete output file if exists already if (File.Exists("Output.xls")){ File.Delete("Output.xls"); } // Save document document.SaveAs("Output.xls"); // Close Spreadsheet document.Close(); // open generated XLS document in default program Process.Start("Output.xls"); } } }

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Data Extraction Suite Home Page

Explore ByteScout Data Extraction Suite Documentation

Explore Samples

Sign Up for ByteScout Data Extraction Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Data Extraction Suite Home Page

Explore ByteScout Data Extraction Suite Documentation

Explore Samples

Sign Up for ByteScout Data Extraction Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next