UniPRT SDK v1.0.0.0
 
Loading...
Searching...
No Matches
PglBarcode1DProperties.h
1//
2// PglBarcode1DProperties.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/23.
6//
7
8#ifndef PglBarcode1DProperties_h
9#define PglBarcode1DProperties_h
10
11#import <Foundation/Foundation.h>
12
13#import <UniPRT/PGL.h>
14
15NS_ASSUME_NONNULL_BEGIN
16
19@interface PglBarcode1DProperties : NSObject
20
21@property (nonatomic, assign) PGLBarcodeType1D type;
22@property (nonatomic, assign) PGLRotation rotation;
23@property (nonatomic, copy) NSString *magnification;
24@property (nonatomic, assign) float height;
25@property (nonatomic, assign) BOOL printHumanReadable;
26@property (nonatomic, assign) BOOL printHumanReadableOnTop;
27
28- (instancetype)init;
29
30@end
31
34NS_ASSUME_NONNULL_END
35
36#endif /* PglBarcode1DProperties_h */