UniPRT SDK v2.0.0.0
 
载入中...
搜索中...
未找到
PglPicture.h
1//
2// PglPicture.h
3// UniPRT
4//
5// Created by Realbuber on 2024/7/8.
6//
7
8#ifndef PglPicture_h
9#define PglPicture_h
10
11#import <Foundation/Foundation.h>
12#import <UniPRT/IPicture.h>
13#import <UniPRT/IPoint.h>
14#import <UniPRT/PrintPlane.h>
15#import <UniPRT/PglCmd.h>
16#import <UniPRT/PGL.h>
17#import <UniPRT/Defaults.h>
18#import <UniPRT/_PglPicture.h>
19NS_ASSUME_NONNULL_BEGIN
20
21@interface PglPicture : NSObject <IPicture>
22
23@property (nonatomic, strong) id<IPoint> Start;
24@property (nonatomic, copy) NSString *ImageName;
25@property (nonatomic, strong) id<IRuler> Ruler;
26
56- (instancetype)initWithStart:(id<IPoint>)start ImageName:(NSString *)imageName;
57
81- (NSString *)description;
82
83@end
84
85NS_ASSUME_NONNULL_END
86
87#endif /* PglPicture_h */
定义 PglPicture.h:21
id< IPoint > Start
定义 PglPicture.h:23
id< IRuler > Ruler
定义 PglPicture.h:25
NSString * ImageName
定义 PglPicture.h:24
NSString * description()
返回可以發送到印表機的字符串。
用于在標籤上放置圖像的圖片介面。
定义 IPicture.h:25