UniPRT SDK v1.0.0.0
 
Loading...
Searching...
No Matches
Pdf417Barcode.h
1//
2// Pdf417Barcode.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/16.
6//
7
8#ifndef Pdf417Barcode_h
9#define Pdf417Barcode_h
10
11#import <Foundation/Foundation.h>
12#import <UniPRT/APdf417.h>
13#import <UniPRT/IPoint.h>
14
41
52@property (nonatomic, strong) id<IPoint> start;
53
64@property (nonatomic, strong) NSString *data;
65
82- (instancetype)init;
83
106- (instancetype)initWithStart:(id<IPoint>)start data:(NSString *)data;
107
134- (NSString *)description;
135
136@end
137
138#endif /* Pdf417Barcode_h */
Base class for PDF417 barcode.
Definition APdf417.h:32
A class representing a PDF417 barcode for TSPL.
Definition Pdf417Barcode.h:41
instancetype init()
Initializes a new instance of the Pdf417Barcode class.
id< IPoint > start
The starting point of the barcode.
Definition Pdf417Barcode.h:52
NSString * description()
Returns a string that can be sent to the printer.
NSString * data
The data to be encoded in the barcode.
Definition Pdf417Barcode.h:64