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
最寬條的寬度。通常是窄條的倍數,以便條碼掃描儀區分條寬。
Definition IBarWidths.h:87
id< IRuler > ruler
用於條寬的標尺。
Definition IBarWidths.h:63
float narrowBar
最小條的寬度。通常被稱為條碼的X尺寸。
Definition IBarWidths.h:75