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

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
Object
BarcodeOptions
Code93Options
Code93ExtendedOptions
See Also