UniPRT SDK v2.0.0.0
 
Loading...
Searching...
No Matches
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
Width of widest bar. This is typically a multiple of the NarrowBar in order for barcode scanners to d...
Definition IBarWidths.h:87
id< IRuler > ruler
Ruler to use for bar widths.
Definition IBarWidths.h:63
float narrowBar
Width of smallest bar. This is typically referred to as the X-dimension of the barcode.
Definition IBarWidths.h:75