Class BarcodeDatamatrix
Generates the 2D Data Matrix barcode.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: FastReport.Barcode
Assembly: FastReport.OpenSource.dll
Syntax
public class BarcodeDatamatrix : Barcode2DBase
Constructors
BarcodeDatamatrix()
Initializes a new instance of the BarcodeDatamatrix class with default settings.
Declaration
public BarcodeDatamatrix()
Properties
CodePage
Gets or sets the code page used for text conversion.
Declaration
public int CodePage { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Remarks
Use this property to encode non-ASCII characters. For example, set this property to 1251 to use Window CP1251.
Encoding
Gets or sets the encoding mode.
Declaration
public DatamatrixEncoding Encoding { get; set; }
Property Value
Type | Description |
---|---|
DatamatrixEncoding |
PixelSize
Gets or sets the size of the pixel.
Declaration
public int PixelSize { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
SymbolSize
Gets or sets the symbol size.
Declaration
public DatamatrixSymbolSize SymbolSize { get; set; }
Property Value
Type | Description |
---|---|
DatamatrixSymbolSize |
Methods
Assign(BarcodeBase)
Assigns properties from other, similar barcode.
Declaration
public override void Assign(BarcodeBase source)
Parameters
Type | Name | Description |
---|---|---|
BarcodeBase | source | Barcode object to assign properties from. |