Interface IBarcodeWriter
- Namespace
- ZXing
- Assembly
- zxing.dll
Interface for a smart class to encode some content into a barcode
public interface IBarcodeWriter
Properties
Encoder
Gets or sets the writer which encodes the content to a BitMatrix. If no value is set the MultiFormatWriter is used.
Writer Encoder { get; set; }
Property Value
Format
Get or sets the barcode format which should be generated (only suitable if MultiFormatWriter is used for property Encoder which is the default)
BarcodeFormat Format { get; set; }
Property Value
Options
Gets or sets the options container for the encoding and renderer process.
EncodingOptions Options { get; set; }
Property Value
Methods
Encode(string)
Encodes the specified contents.
BitMatrix Encode(string contents)
Parameters
contents
stringThe contents.