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

using DevExpress.Docs.Barcode;
using DevExpress.Drawing;
using System.Drawing;
var msiOptions = new CodeMSIOptions();
msiOptions.ShowText = true;
msiOptions.Padding = new Padding(5);
msiOptions.BorderWidth = 1;
using var msiOptionsStream = new FileStream(Path.Combine(outDir, "barcode_symbology_msi_plessey.png"), FileMode.Create, FileAccess.Write);
using var msiOptionsGenerator = new BarcodeGenerator(msiOptions);
msiOptionsGenerator.Export("1234567", msiOptionsStream, DXImageFormat.Png);
Inheritance
Object
BarcodeOptions
CodeMSIOptions
See Also