UPCE0OptionsBuilder Class
Builds an UPCE0Options object. Chain builder methods to configure barcode settings, then call the Build method to create the options object.
Namespace: DevExpress.Docs.Barcode
Assembly: DevExpress.Docs.Core.v26.1.dll
Declaration
public class UPCE0OptionsBuilder :
BarcodeOptionsBuilder<UPCE0Options, UPCE0OptionsBuilder>
Related API Members
The following members return UPCE0OptionsBuilder objects:
Remarks
The following code snippet creates a Universal Product Code (UPC-E0) barcode and specifies its settings:

using DevExpress.Docs.Barcode;
using DevExpress.Drawing;
using System.Drawing;
var upce0code = UPCE0OptionsBuilder.Create()
.WithBackColor(Color.LightGray)
.WithShowText(false)
.WithPadding(5)
.WithBorderWidth(1)
.WithBorderColor(Color.Blue)
.Build();
var filePath = Path.GetFullPath("upce0_code.png");
using var stream = new FileStream(filePath, FileMode.Create);
using var generator = new BarcodeGenerator(upce0code);
generator.Export("4210000526", stream, DXImageFormat.Png);
Inheritance
See Also