UniPRT SDK v2.0.0.0
 
载入中...
搜索中...
未找到
IBarWidths.h
1//
2// IBarWidths.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/7.
6//
7
8#ifndef IBarWidths_h
9#define IBarWidths_h
10
11#import <Foundation/Foundation.h>
12#import <UniPRT/IRuler.h>
13
39@protocol IBarWidths <NSObject>
40
63@property (nonatomic, strong) id<IRuler> ruler;
64
75@property (nonatomic, assign) float narrowBar;
76
87@property (nonatomic, assign) float wideBar;
88
89@end
90
91#endif /* IBarWidths_h */
float wideBar
最宽条的宽度。通常是窄条的倍数,以便条码扫描仪区分条宽。
定义 IBarWidths.h:87
id< IRuler > ruler
用于条宽的标尺。
定义 IBarWidths.h:63
float narrowBar
最小条的宽度。通常被称为条码的X尺寸。
定义 IBarWidths.h:75