Contains the extra options to use when writing Datamatrix barcodes.
[SerializableAttribute()]
public class DatamatrixBarcodeWriteOptions : BarcodeWriteOptions
<TypeConverterAttribute()>
<SerializableAttribute()>
Public Class DatamatrixBarcodeWriteOptions
Inherits Leadtools.Barcode.BarcodeWriteOptions
Implements System.ICloneable
public sealed class DatamatrixBarcodeWriteOptions : System.ICloneable
@interface LTDatamatrixBarcodeWriteOptions : LTBarcodeWriteOptions
public class DatamatrixBarcodeWriteOptions extends BarcodeWriteOptions
function Leadtools.Barcode.DatamatrixBarcodeWriteOptions()
[TypeConverterAttribute()]
[SerializableAttribute()]
public ref class DatamatrixBarcodeWriteOptions : public Leadtools.Barcode.BarcodeWriteOptions, System.ICloneable
The DatamatrixBarcodeWriteOptions class is used to control the options when writing Datamatrix barcodes using LEADTOOLS. Set the options in two ways:
The BarcodeWriter class contains default options for each barcode symbology (or group of common symbologies). These options can be retrieved using the BarcodeWriter.GetDefaultOptions method passing BarcodeSymbology.Datamatrix. You can then change the members of the returned DatamatrixBarcodeWriteOptions by casting it from BarcodeWriteOptions to DatamatrixBarcodeWriteOptions.
You can also create an instance of DatamatrixBarcodeWriteOptions class and use it directly in the BarcodeWriter.WriteBarcode method which accepts the options as an input parameter.
The base BarcodeWriteOptions contains the following members and features:
Member | Description |
---|---|
BarcodeWriteOptions.ForeColor |
Controls the barcode foreground color (color of the bars or symbols) to use when writing a barcode to an image. |
BarcodeWriteOptions.BackColor |
Controls the barcode background color (color of the spaces) to use when writing a barcode to an image. |
BarcodeWriteOptions.Load and BarcodeWriteOptions.Save |
Can be used to save or load the options to/from an XML file or stream. |
BarcodeWriteOptions.GetSupportedSymbologies |
This class overrides the base class method to return an array containing the following symbologies: BarcodeSymbology.Datamatrix |
In addition to the features and members, the DatamatrixBarcodeWriteOptions contains these Datamatrix barcodes specific features:
Member | Description |
---|---|
HorizontalAlignment |
Horizontal alignment for the barcode inside the destination bounds. |
VerticalAlignment |
Vertical alignment for the barcode inside the destination bounds. |
DisableCompression |
Write data into the symbol without compression. Two bytes must be added to the data, then the data is written byte-for-byte to the symbol. |
GroupTotal |
Group total for Datamatrix code symbols |
GroupNumber |
Group number for Datamatrix code symbols. |
FileIdNumberLowByte |
The low byte of the Datamatrix file ID number. Used when writing a group of related symbols. |
FileIdNumberHighByte |
The high byte of the Datamatrix file ID number. Used when writing a group of related symbols. |
XModule |
Size of the smallest module when writing in thousands of an inch (0.001). |
HRItoGS1 |
Format Data as GS1 format. |
For an example, refer to DatamatrixBarcodeData.
DatamatrixBarcodeWriteOptions Members
Programming with LEADTOOLS Barcode
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET