Link Search Menu Expand Document

Set Barcode Margins - C#

BarCode SDK sample in C# demonstrating ‘Set Barcode Margins’

Program.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;

using Bytescout.BarCode;

namespace Sample
{
    class Program
    {
        static void Main(string[] args)
        {
            // Create new barcode
            Barcode barcode = new Barcode();

            // Set symbology
            barcode.Symbology = SymbologyType.Codabar;
            // Set value
            barcode.Value = "123456";

            // Set new margins
            barcode.Margins = new Margins(0, 0, 100, 100);

            // Save barcode to image
            barcode.SaveImage("result.png");

            // Show image in default image viewer
            Process.Start("result.png");
        }
    }
}

Download Source Code (.zip)

Return to the previous page Explore BarCode SDK