UniPRT SDK v1.0.0.0
 
Loading...
Searching...
No Matches
PglPdf417Barcode.h
1//
2// PglPdf417Barcode.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/27.
6//
7
8#ifndef PglPdf417Barcode_h
9#define PglPdf417Barcode_h
10
11#import <Foundation/Foundation.h>
12
13#import <UniPRT/APdf417.h>
14#import <UniPRT/IPoint.h>
15
42
53@property (nonatomic, strong) id<IPoint> start;
54
65@property (nonatomic, strong) NSString *data;
66
89- (instancetype)initWithStart:(id<IPoint>)start data:(NSString *)data;
90
117- (NSString *)description;
118
119@end
120
121#endif /* PglPdf417Barcode_h */
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