UniPRT SDK v2.0.0.0
 
载入中...
搜索中...
未找到
IBarcode_1D_Properties.h
1//
2// IBarcode_1D_Properties.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/7.
6//
7
8#ifndef IBarcode_1D_Properties_h
9#define IBarcode_1D_Properties_h
10
11#import <Foundation/Foundation.h>
12
13#import <UniPRT/IRuler.h>
14#import <UniPRT/IBarWidths.h>
15#import <UniPRT/IBarcodeType1D.h>
16#import <UniPRT/IRotation.h>
17
34@protocol IBarcode_1D_Properties <IRotation, IBarcodeType1D>
35
46@property (nonatomic, strong) id<IRuler> ruler;
47
58@property (nonatomic, strong) id<IBarWidths> barWidths;
59
70@property (nonatomic, assign) BOOL printHumanReadable;
71
72@end
73
74#endif /* IBarcode_1D_Properties_h */
id< IRuler > ruler
用于定位和高度的标尺。
定义 IBarcode_1D_Properties.h:46
id< IBarWidths > barWidths
条码放大。窄条/宽条的宽度。
定义 IBarcode_1D_Properties.h:58
BOOL printHumanReadable
在条码底部打印可读的PDF文本。
定义 IBarcode_1D_Properties.h:70