←Select platform

DatamatrixBarcodeWriteOptions Class

Summary

Contains the extra options to use when writing Datamatrix barcodes.

Syntax
C#
VB
Objective-C
C++
Java
[SerializableAttribute()] 
public class DatamatrixBarcodeWriteOptions : BarcodeWriteOptions 
<TypeConverterAttribute()> 
<SerializableAttribute()> 
Public Class DatamatrixBarcodeWriteOptions  
   Inherits BarcodeWriteOptions 
   Implements System.ICloneable  
@interface LTDatamatrixBarcodeWriteOptions : LTBarcodeWriteOptions 
public class DatamatrixBarcodeWriteOptions extends BarcodeWriteOptions 
[TypeConverterAttribute()] 
[SerializableAttribute()] 
public ref class DatamatrixBarcodeWriteOptions : public BarcodeWriteOptions, System.ICloneable   

Remarks

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.

Example

For an example, refer to DatamatrixBarcodeData.

Requirements

Target Platforms

Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Barcode Assembly