UniPRT SDK v1.0.0.0
 
载入中...
搜索中...
未找到
Barcode1DProperties.h
1//
2// Barcode_1D_Properties.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/14.
6//
7
8#ifndef Barcode1DProperties_h
9#define Barcode1DProperties_h
10
11#import <Foundation/Foundation.h>
12#import <UniPRT/TSPL.h>
13
14@interface Barcode1DProperties : NSObject
15
16@property (nonatomic, assign) TSPLBarcodeType1D type;
17@property (nonatomic, assign) TSPLRotation rotation;
18@property (nonatomic, strong) NSString *magnification;
19@property (nonatomic, assign) float height;
20@property (nonatomic, assign) BOOL printHumanReadable;
21@property (nonatomic, assign) BOOL printHumanReadableOnTop;
22
23- (instancetype)init;
24
25@end
26#endif /* Barcode_1D_Properties_h */
Definition Barcode1DProperties.h:15
instancetype init()
Definition Barcode1DProperties.m:13
float height
Definition Barcode1DProperties.h:19
TSPLRotation rotation
Definition Barcode1DProperties.h:17
BOOL printHumanReadable
Definition Barcode1DProperties.h:20
BOOL printHumanReadableOnTop
Definition Barcode1DProperties.h:21
NSString * magnification
Definition Barcode1DProperties.h:18
TSPLBarcodeType1D type
Definition Barcode1DProperties.h:16