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

using DevExpress.Docs.Barcode;
using DevExpress.Drawing;
using System.Drawing;
var imOptions = new IntelligentMailOptions();
imOptions.BackColor = Color.LightGray;
imOptions.ShowText = false;
imOptions.Padding = new Padding(5);
imOptions.BorderWidth = 1;
imOptions.BorderColor = Color.Blue;
using var imOptionsStream = new FileStream(Path.Combine(outDir, "barcode_symbology_intelligent_mail.png"), FileMode.Create, FileAccess.Write);
using var imOptionsGenerator = new BarcodeGenerator(imOptions);
imOptionsGenerator.Export("92123912345678123456", imOptionsStream, DXImageFormat.Png);
Inheritance
Object
BarcodeOptions
IntelligentMailOptions
See Also