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

    Contains options specific to Code93 Extended symbology.

    Namespace: DevExpress.Docs.Barcode

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

    Declaration

    public class Code93ExtendedOptions :
        Code93Options

    Remarks

    The following code snippet creates an Code 93 Extended barcode and customizes its options:

    DevExpress Barcode Generator - Code 93 Extended barcode

    using DevExpress.Docs.Barcode;
    using DevExpress.Drawing;
    using System.Drawing;
    
    var code93ExtOptions = new Code93ExtendedOptions();
    code93ExtOptions.ShowText = true;
    code93ExtOptions.Padding = new Padding(5);
    code93ExtOptions.BorderWidth = 1;
    code93ExtOptions.CalculateChecksum = true;
    
    using var code93ExtOptionsStream = new FileStream(Path.Combine(outDir, "barcode_symbology_code93_extended.png"), FileMode.Create, FileAccess.Write);
    using var code93ExtOptionsGenerator = new BarcodeGenerator(code93ExtOptions);
    
    code93ExtOptionsGenerator.Export("Code93 ext: abcXYZ!?", code93ExtOptionsStream, DXImageFormat.Png);
    

    Inheritance

    See Also