A class representing an Aztec barcode. More...
#include <PglAztecBarcode.h>
Instance Methods | |
| (instancetype) | - init |
| Initializes a new instance of the PglAztecBarcode class. | |
| (instancetype) | - initWithStart:data: |
| Initializes a new instance of the PglAztecBarcode class with the specified start point and data. | |
| (NSString *) | - description |
| Returns the string that can be sent to printer. | |
Instance Methods inherited from AAztecBarcode | |
| (int) | - getLayersWithinRange |
| Gets the number of layers within the valid range. | |
| (BOOL) | - hasLayers |
| Checks if the barcode has layers. | |
| (int) | - getErrCorrectionPercent |
| Gets the error correction percentage. | |
Instance Methods inherited from ABarcode2D | |
| (NSString *) | - NS_REQUIRES_SUPER |
Additional Inherited Members | |
Properties inherited from AAztecBarcode | |
| id< ICellSquare > | cellSize |
| The cell size for the barcode. | |
| AztecCodeTypeEnum | type |
| The type of the Aztec barcode. | |
| int | layers |
| The number of layers to use for AztecCodeTypeEnum.Compact or AztecCodeTypeEnum.Full barcode types. | |
| int | fixedErrCorrection |
| This percent error correction value only applies to AztecCodeTypeEnum.FixedErrCorrection. | |
Properties inherited from ABarcode2D | |
| id< IRuler > | ruler |
| id< IPoint > | start |
| NSString * | data |
| RotateEnum | rotation |
Properties inherited from <IBarcodeItem_2D> | |
| id< IPoint > | start |
| Position where barcode starts. | |
| NSString * | data |
| The barcode content. | |
Properties inherited from <IPositionRuler> | |
| id< IRuler > | ruler |
Properties inherited from <IRotation> | |
| RotateEnum | rotation |
Properties inherited from <ISquareCell> | |
| id< ICellSquare > | cellSize |
| Barcode cell size. Larger cell size results in barcodes that take up a larger area. | |
A class representing an Aztec barcode.
This class inherits from AAztecBarcode and provides functionality for initializing and describing Aztec barcodes.
| - (NSString *) description |
Returns the string that can be sent to printer.
Reimplemented from <IBarcode2D>.
| - (instancetype) init |
Initializes a new instance of the PglAztecBarcode class.
Reimplemented from AAztecBarcode.
| - (instancetype) initWithStart: | (id< IPoint >) | start | |
| data: | (NSString *) | data |
Initializes a new instance of the PglAztecBarcode class with the specified start point and data.
| start | The starting point of the barcode. |
| data | The data to be encoded in the barcode. |
Reimplemented from AAztecBarcode.