Configuration class for GS1 Databar-14 codes. More...
Public Member Functions | |
| cvb.code_reader.GS1DataBar14 | disable (self) |
| Disables decoding. | |
| cvb.code_reader.GS1DataBar14 | disable_cca (self) |
| Disables CompositeComponent A (CC-A) decoding. | |
| cvb.code_reader.GS1DataBar14 | disable_ccb (self) |
| Disables CompositeComponent B (CC-B) decoding. | |
| cvb.code_reader.GS1DataBar14 | disable_ccc (self) |
| Disables CompositeComponent C (CC-C) decoding. | |
| cvb.code_reader.GS1DataBar14 | enable (self) |
| Enables decoding. | |
| cvb.code_reader.GS1DataBar14 | enable_cca (self) |
| Enables CompositeComponent A (CC-A) decoding. | |
| cvb.code_reader.GS1DataBar14 | enable_ccb (self) |
| Enables CompositeComponent B (CC-B) decoding. | |
| cvb.code_reader.GS1DataBar14 | enable_ccc (self) |
| Enables CompositeComponent C (CC-C) decoding. | |
Properties | |
| is_enabled = property | |
| bool: Indicates whether decoding for this symbology is enabled. | |
| is_enabled_cca = property | |
| bool: Checks if CompositeComponent A (CC-A) decoding is enabled. | |
| is_enabled_ccb = property | |
| bool: Checks if CompositeComponent B (CC-B) decoding is enabled. | |
| is_enabled_ccc = property | |
| bool: Checks if CompositeComponent C (CC-C) decoding is enabled. | |
Configuration class for GS1 Databar-14 codes.
Use this class to configure decoding options for GS1 Databar-14 codes. To access the configuration and enable decoding GS1 Databar-14 codes, use the following example. For additional details on configuration, refer to the documentation for Decoder.config().
A more comprehensive code example demonstrating configuration in a broader context, as well as the decoding process, can be found here.
| cvb.code_reader.GS1DataBar14 disable | ( | self | ) |
Disables decoding.
cvb.code_reader.GS1DataBar14 A reference to the current configuration object for method chaining.
| cvb.code_reader.GS1DataBar14 disable_cca | ( | self | ) |
Disables CompositeComponent A (CC-A) decoding.
Disabling CC-A also deactivates it for all symbologies in the GS1 DataBar family.
cvb.code_reader.GS1DataBar14 A reference to the current configuration object for method chaining.
| cvb.code_reader.GS1DataBar14 disable_ccb | ( | self | ) |
Disables CompositeComponent B (CC-B) decoding.
Disabling CC-B also deactivates it for all symbologies in the GS1 DataBar family.
cvb.code_reader.GS1DataBar14 A reference to the current configuration object for method chaining.
| cvb.code_reader.GS1DataBar14 disable_ccc | ( | self | ) |
Disables CompositeComponent C (CC-C) decoding.
Disabling CC-C also deactivates it for all symbologies in the GS1 DataBar family.
cvb.code_reader.GS1DataBar14 A reference to the current configuration object for method chaining.
| cvb.code_reader.GS1DataBar14 enable | ( | self | ) |
Enables decoding.
cvb.code_reader.GS1DataBar14 A reference to the current configuration object for method chaining.
| cvb.code_reader.GS1DataBar14 enable_cca | ( | self | ) |
Enables CompositeComponent A (CC-A) decoding.
Enabling CC-A also activates it for all symbologies in the GS1 DataBar family.
cvb.code_reader.GS1DataBar14 A reference to the current configuration object for method chaining.
| cvb.code_reader.GS1DataBar14 enable_ccb | ( | self | ) |
Enables CompositeComponent B (CC-B) decoding.
Enabling CC-B also activates it for all symbologies in the GS1 DataBar family.
cvb.code_reader.GS1DataBar14 A reference to the current configuration object for method chaining.
| cvb.code_reader.GS1DataBar14 enable_ccc | ( | self | ) |
Enables CompositeComponent C (CC-C) decoding.
Enabling CC-C also activates it for all symbologies in the GS1 DataBar family.
cvb.code_reader.GS1DataBar14 A reference to the current configuration object for method chaining.
|
static |
bool: Indicates whether decoding for this symbology is enabled.
Can be used to check the status or to enable/disable decoding directly.True if decoding is enabled, False otherwise.
|
static |
bool: Checks if CompositeComponent A (CC-A) decoding is enabled.
Can be used to check the status or to enable/disable CompositeComponent decoding directly. True if decoding is enabled, False otherwise.
|
static |
bool: Checks if CompositeComponent B (CC-B) decoding is enabled.
Can be used to check the status or to enable/disable CompositeComponent decoding directly. True if decoding is enabled, False otherwise.
|
static |
bool: Checks if CompositeComponent C (CC-C) decoding is enabled.
Can be used to check the status or to enable/disable CompositeComponent decoding directly. True if decoding is enabled, False otherwise.