UniPRT SDK v1.0.0.0
 
载入中...
搜索中...
未找到
PglAlphanumeric.h
1//
2// PglAlphanumeric.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/23.
6//
7
8#ifndef PglAlphanumeric_h
9#define PglAlphanumeric_h
10
11#import <Foundation/Foundation.h>
12
13#import <UniPRT/PglCmd.h>
14#import <UniPRT/PGL.h>
15
16
17NS_ASSUME_NONNULL_BEGIN
18
21@interface PglAlphanumeric : NSObject
22
23@property (nonatomic, assign) int SR;
24@property (nonatomic, assign) int SC;
25@property (nonatomic, assign) int VE;
26@property (nonatomic, assign) int HE;
27@property (nonatomic, strong) NSString *data;
28@property (nonatomic, assign) BOOL dark;
29@property (nonatomic, assign) BOOL reverse;
30@property (nonatomic, assign) BOOL usingPoints;
31@property (nonatomic, assign) PGLRotation rotation;
32@property (nonatomic, assign) PGLAlignEnum align;
33
34- (instancetype)initWithSR:(int)sr SC:(int)sc VE:(int)ve HE:(int)he data:(NSString *)data;
35- (NSString *)description;
36
37@end
38
41NS_ASSUME_NONNULL_END
42
43#endif /* PglAlphanumeric_h */