UniPRT SDK v2.0.0.0
 
Loading...
Searching...
No Matches
_Picture.h
1// _TsplPicture.h
2
3#import <Foundation/Foundation.h>
4
5NS_ASSUME_NONNULL_BEGIN
6
16@interface _Picture : NSObject
17
18@property (nonatomic, assign) NSInteger row;
19@property (nonatomic, assign) NSInteger column;
20@property (nonatomic, copy) NSString *imageName;
21
23- (instancetype)initWithRow:(NSInteger)row
24 column:(NSInteger)column
25 imageName:(NSString *)imageName;
26
28- (NSString *)description;
29
30@end
31
32NS_ASSUME_NONNULL_END
33
Internal class for generating TSPL PUTBMP command.
Definition _Picture.h:17
NSInteger row
Definition _Picture.h:18
NSInteger column
Definition _Picture.h:19
NSString * description()
Convert to full TSPL command string.
NSString * imageName
Definition _Picture.h:20