 
         
         
             Important Update
                        Important Update
                    
                This page helps you to learn from code samples for programming in C#. ByteScout Barcode Suite was made to help with font style in cell with spreadsheet sdk in C#. ByteScout Barcode Suite is the set that includes three different SDK products to generate barcodes, read barcodes and read and write spreadsheets: Barcode SDK, Barcode Reader SDK and Spreadsheet SDK.
C# code snippet like this for ByteScout Barcode Suite works best when you need to quickly implement font style in cell with spreadsheet sdk in your C# application. If you want to implement this functionality, you should copy and paste code below into your app using code editor. Then compile and run your application. Enjoy writing a code with ready-to-use sample C# codes to implement font style in cell with spreadsheet sdk using ByteScout Barcode Suite.
ByteScout Barcode Suite free trial version is available for download from our website. Free trial also includes programming tutorials along with source code samples.
  On-demand (REST Web API) version: 
   Web API (on-demand version)
  
  On-premise offline SDK for Windows: 
   60 Day Free Trial (on-premise)
      using System;
using System.Collections.Generic;
using System.Drawing;
using System.Text;
using Bytescout.Spreadsheet;
using System.Diagnostics;
using System.IO;
namespace HelloWorld
{
    class Program
    {
        static void Main(string[] args)
        {
            // Create new Spreadsheet
            Spreadsheet document = new Spreadsheet();
            // Add new worksheet
            Worksheet worksheet = document.Workbook.Worksheets.Add("Sheet1");
            // Apply rich text formatting
            worksheet.Cell(0, 0).Value = "Arial Italic Bold, Size=23";
            worksheet.Cell(0, 0).Font = new Font("Arial", 23, FontStyle.Bold | FontStyle.Italic);
            // delete output file if exists already
            if (File.Exists("FontStyleForCell.xls")){
                File.Delete("FontStyleForCell.xls");
            }
            // Save document
            document.SaveAs("FontStyleForCell.xls");
            // open generated document
            Process.Start("FontStyleForCell.xls");
        }
    }
}
    
    60 Day Free Trial or Visit ByteScout Barcode Suite Home Page
    
    Explore ByteScout Barcode Suite Documentation
    
    Explore Samples
    
    Sign Up for ByteScout Barcode Suite Online Training
    Get Your API Key
    
    Explore Web API Docs
    
    Explore Web API Samples    
60 Day Free Trial or Visit ByteScout Barcode Suite Home Page
Explore ByteScout Barcode Suite Documentation
Explore Samples
Sign Up for ByteScout Barcode Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
also available as: 
