A class representing a Maxicode message for TSPL. More...
#include <MaxicodeMsg.h>
Instance Methods | |
(instancetype) | - initWithMode:primaryMsg:remainingMsg: |
Initializes a new instance of the MaxicodeMsg class with the specified mode, primary message, and remaining message. | |
![]() | |
(instancetype) | - init |
Additional Inherited Members | |
![]() | |
MaxicodeModeEnum | mode |
NSString * | primaryMsg |
NSString * | remainingMsg |
NSString * | data |
![]() | |
NSString * | primaryMsg |
Primary Message, excluding the mode value, typically has a maximum of 9 characters. | |
NSString * | remainingMsg |
Secondary Message, typically has a maximum of 68 characters for modes with EEC or 84 characters for modes with SEC. | |
![]() | |
MaxicodeModeEnum | mode |
The Mode used to state the format of the barcode data. See MaxicodeModeEnum for possible supported modes. | |
NSString * | data |
The barcode data that includes the primary message + secondary messages to be encoded in the barcode. | |
A class representing a Maxicode message for TSPL.
This class inherits from AMaxicodeMsg and provides functionality for initializing and managing Maxicode messages in TSPL.
- (instancetype) initWithMode: | (MaxicodeModeEnum) | mode | |
primaryMsg: | (NSString *) | primaryMsg | |
remainingMsg: | (NSString *) | remainingMsg |
Initializes a new instance of the MaxicodeMsg class with the specified mode, primary message, and remaining message.
mode | The mode of the Maxicode. |
primaryMsg | The primary message to be encoded. |
remainingMsg | The remaining message to be encoded. |
Reimplemented from AMaxicodeMsg.