Skip to main content
All docs
V26.1
  • DeutschePostIdentcodeOptions Class

    Contains options specific to Deutsche Post Identcode symbology.

    Namespace: DevExpress.Docs.Barcode

    Assembly: DevExpress.Docs.Core.v26.1.dll

    Declaration

    public class DeutschePostIdentcodeOptions :
        Interleaved2of5OptionsBase

    Remarks

    The following code snippet creates an Deutsche Post Identcode barcode and customizes its options:

    DevExpress Barcode Generator - Deutsche Post Identcode barcode

    using DevExpress.Docs.Barcode;
    using DevExpress.Drawing;
    using System.Drawing;
    
    var identOptions = new DeutschePostIdentcodeOptions();
    identOptions.ShowText = true;
    identOptions.Padding = new Padding(5);
    identOptions.BorderWidth = 1;
    
    using var identOptionsStream = new FileStream(Path.Combine(outDir, "barcode_symbology_deutsche_post_identcode.png"), FileMode.Create, FileAccess.Write);
    using var identOptionsGenerator = new BarcodeGenerator(identOptions);
    identOptionsGenerator.Export("12345678901", identOptionsStream, DXImageFormat.Png);
    

    Inheritance

    See Also