Aspose.Barcode for Python via Java Generation and Recognition API docs
DataMatrixExtendedParameters Class Reference

Inherits BaseJavaClass.

Public Member Functions

def __init__ (self, javaClass)
 
def init (self)
 
def getStructuredAppendBarcodesCount (self)
 Gets the DataMatrix structured append mode barcodes count. More...
 
def getStructuredAppendBarcodeId (self)
 Gets the ID of the DataMatrix structured append mode barcode. More...
 
def getStructuredAppendFileId (self)
 
def isReaderProgramming (self)
 Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. More...
 
def equals (self, obj)
 Returns a value indicating whether this instance is equal to a specified. More...
 
def hashCode (self)
 Returns the hash code for this instance. More...
 
def toString (self)
 Returns a human-readable string representation of this. More...
 
- Public Member Functions inherited from BaseJavaClass
def getJavaClass (self)
 
def setJavaClass (self, javaClass)
 
def getJavaClassName (self)
 
def isNull (self)
 
def printJavaClassName (self)
 

Additional Inherited Members

- Public Attributes inherited from BaseJavaClass
 javaClass
 
 javaClassName
 

Detailed Description

  Stores special data of DataMatrix recognized barcode

  This sample shows how to get DataMatrix raw values

  \code

  generator = BarcodeGenerator(EncodeTypes.DATA_MATRIX, "12345"))
  generator.save("c:\\test.png", BarcodeImageFormat.PNG);

  reader = new BarCodeReader("c:\\test.png", None, DecodeType.DATA_MATRIX))
  for result in reader.readBarCodes():
     console.log("BarCode type: " + result.getCodeTypeName())
     console.log("BarCode codetext: " + result.getCodeText())
     console.log("DataMatrix barcode ID: " + result.getExtended().getDataMatrix().getStructuredAppendBarcodeId())
     console.log("DataMatrix barcodes count: " + result.getExtended().getDataMatrix().getStructuredAppendBarcodesCount())
     console.log("DataMatrix file ID: " + result.getExtended().getDataMatrix().getStructuredAppendFileId())
     console.log("DataMatrix is reader programming: " + result.getExtended().getDataMatrix().isReaderProgramming())
  \endcode

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self,
  javaClass 
)

Reimplemented from BaseJavaClass.

Member Function Documentation

◆ equals()

def equals (   self,
  obj 
)

Returns a value indicating whether this instance is equal to a specified.

DataMatrixExtendedParameters

value.

Parameters
objAn System.Object value to compare to this instance.
Returns
<b>true</b>
if obj has the same value as this instance; otherwise,
<b>false</b>
.

◆ getStructuredAppendBarcodeId()

def getStructuredAppendBarcodeId (   self)

Gets the ID of the DataMatrix structured append mode barcode.

ID starts from 1 and must be less or equal to barcodes count. Default value is -1.

Returns
: The ID of the DataMatrix structured append mode barcode.

◆ getStructuredAppendBarcodesCount()

def getStructuredAppendBarcodesCount (   self)

Gets the DataMatrix structured append mode barcodes count.

Default value is -1. Count must be a value from 1 to 35.

Returns
: The count of the DataMatrix structured append mode barcode.

◆ getStructuredAppendFileId()

def getStructuredAppendFileId (   self)
Gets the ID of the DataMatrix structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count.
Default value is -1.

@return The ID of the DataMatrix structured append mode barcode.

◆ hashCode()

def hashCode (   self)

Returns the hash code for this instance.

Returns
A 32-bit signed integer hash code.

◆ init()

def init (   self)

Reimplemented from BaseJavaClass.

◆ isReaderProgramming()

def isReaderProgramming (   self)

Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader.

Default value is false.

◆ toString()

def toString (   self)

Returns a human-readable string representation of this.

DataMatrixExtendedParameters

.

Returns
: A string that represents this
DataMatrixExtendedParameters
.