A class representing a Data Matrix barcode. More...
#include <PglDataMatrixBarcode.h>
Instance Methods | |
| (instancetype) | - init |
| Initializes a new instance of the PglDataMatrixBarcode class. | |
| (instancetype) | - initWithStart:data: |
| Initializes a new instance of the PglDataMatrixBarcode class with the specified start point and data. | |
| (NSString *) | - description |
| Returns a string that describes the contents of the receiver. | |
Instance Methods inherited from ADataMatrix | |
| (NSString *) | - ctrlChar: |
| Gets a string that represents non-printable control character in 0-31 range. | |
Instance Methods inherited from ABarcode2D | |
| (NSString *) | - NS_REQUIRES_SUPER |
Additional Inherited Members | |
Properties inherited from ADataMatrix | |
| id< IPoint > | start |
| NSString * | data |
| char | ctrlCharDelimiter |
| id< ICellSquare > | cellSize |
| BOOL | rectangle |
| Sets the shape for barcode to be rectangular shape, otherwise default square shape is used. | |
| NSString * | fnc1 |
| Get a string that represents the FNC1 character in order to include it within the barcode data. | |
| NSValue * | rowsCols |
| Specify the number of cells in terms of rows and columns of the barcode if want to manually set the barcode matrix dimensions. | |
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 a Data Matrix barcode.
This class inherits from ADataMatrix and provides functionality for initializing and describing Data Matrix barcodes.
| - (NSString *) description |
Returns a string that describes the contents of the receiver.
Reimplemented from <IBarcode2D>.
| - (instancetype) init |
Initializes a new instance of the PglDataMatrixBarcode class.
Reimplemented from ADataMatrix.
| - (instancetype) initWithStart: | (id< IPoint >) | start | |
| data: | (NSString *) | data |
Initializes a new instance of the PglDataMatrixBarcode 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 ADataMatrix.