EAN13Options Class
Contains options specific to EAN13 symbology.
Namespace: DevExpress.Docs.Barcode
Assembly: DevExpress.Docs.Core.v26.1.dll
Declaration
Remarks
The following code snippet creates an EAN13 barcode and customizes its options:

using DevExpress.Docs.Barcode;
using DevExpress.Drawing;
using System.Drawing;
var ean13Options = new EAN13Options();
ean13Options.ShowText = true;
ean13Options.Padding = new Padding(5);
ean13Options.BorderWidth = 1;
using var ean13OptionsStream = new FileStream(Path.Combine(outDir, "barcode_symbology_ean13.png"), FileMode.Create, FileAccess.Write);
using var ean13OptionsGenerator = new BarcodeGenerator(ean13Options);
ean13OptionsGenerator.Export("590123412345", ean13OptionsStream, DXImageFormat.Png);
Inheritance
See Also