UniPRT SDK v1.0.0.0
 
Loading...
Searching...
No Matches
PglScale.h
1//
2// PglScale.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/23.
6//
7
8#ifndef PglScale_h
9#define PglScale_h
10
11#import <Foundation/Foundation.h>
12
13#import <UniPRT/PglCmd.h>
14#import <UniPRT/PGL.h>
15
16NS_ASSUME_NONNULL_BEGIN
17
20@interface PglScale : NSObject
21
22@property (nonatomic, assign) PGLScaleUnits units;
23@property (nonatomic, assign) int horzResolution;
24@property (nonatomic, assign) int vertResolution;
25
26- (instancetype)initWithUnits:(PGLScaleUnits)units horizontalDPI:(int)horzDpi verticalDPI:(int)vertDpi;
27- (NSString *)description;
28
29@end
30
33NS_ASSUME_NONNULL_END
34
35#endif /* PglScale_h */