Code128ExtendedParameters
Contents
[
Hide
]Code128ExtendedParameters class
Module: aspose_barcode.recognition.code_128_extended_parameters
Stores special data of Code128 recognized barcode. Represents the recognized barcode’s region and barcode angle This sample shows how to get code128 raw values
Constructors
| Name | Description |
|---|---|
| init |
Methods
| Name | Return Type | Static | Description |
|---|---|---|---|
| eq | bool | No | Returns a value indicating whether this instance is equal to a specified Code128ExtendedParameters value. |
| hash | int | No | Returns the hash code for the current instance. |
| str | str | No | Returns a human-readable string representation of this Code128ExtendedParameters. |
| code_128_data_portions | Optional[List[Code128DataPortion]] | No | |
| is_empty | bool | No |
Code128ExtendedParameters Constructor
__init__(self, _java_class) -> def
| Parameter | Type | Description |
|---|---|---|
_java_class | `` |
Code128ExtendedParameters.eq
__eq__(self, Code128ExtendedParameters other) -> bool
Returns a value indicating whether this instance is equal to a specified Code128ExtendedParameters value.
| Parameter | Type | Description |
|---|---|---|
other | Code128ExtendedParameters |
Return Type: bool — True if obj has the same value as this instance otherwise, False.
Code128ExtendedParameters.hash
__hash__(self) -> int
Returns the hash code for the current instance.
Return Type: int — A hash code for the current object.
Code128ExtendedParameters.str
__str__(self) -> str
Returns a human-readable string representation of this Code128ExtendedParameters.
Return Type: str — A string that represents this Code128ExtendedParameters.
Code128ExtendedParameters.code_128_data_portions
code_128_data_portions(self) -> Optional[List[Code128DataPortion]]
Return Type: Optional[List[Code128DataPortion]]
Code128ExtendedParameters.is_empty
is_empty(self) -> bool
Return Type: bool