8#ifndef PglPdf417Barcode_h
9#define PglPdf417Barcode_h
11#import <Foundation/Foundation.h>
13#import <UniPRT/APdf417.h>
14#import <UniPRT/IPoint.h>
53@property (nonatomic, strong) id<IPoint>
start;
65@property (nonatomic, strong) NSString *
data;
89- (instancetype)initWithStart:(
id<IPoint>)start data:(NSString *)data;
Base class for PDF417 barcode.
Definition APdf417.h:32
A class representing a PDF417 barcode.
Definition PglPdf417Barcode.h:42
NSString * data
The data to be encoded in the barcode.
Definition PglPdf417Barcode.h:65
NSString * description()
Returns a string that can be sent to the printer.
id< IPoint > start
The starting point of the barcode.
Definition PglPdf417Barcode.h:53