UniPRT SDK v2.0.0.0
 
载入中...
搜索中...
未找到
PglPicture.h
1#ifndef PglPicture_h
2#define PglPicture_h
3
4#import <Foundation/Foundation.h>
5#import <UniPRT/IPicture.h>
6#import <UniPRT/IPoint.h>
7#import <UniPRT/PrintPlane.h>
8#import <UniPRT/PglCmd.h>
9#import <UniPRT/PGL.h>
10#import <UniPRT/Defaults.h>
11#import <UniPRT/_PglPicture.h>
12NS_ASSUME_NONNULL_BEGIN
13
40@interface PglPicture : NSObject <IPicture>
41
52@property (nonatomic, strong) id<IPoint> Start;
53
64@property (nonatomic, copy) NSString *ImageName;
65
76@property (nonatomic, strong) id<IRuler> Ruler;
77
100- (instancetype)initWithStart:(id<IPoint>)start ImageName:(NSString *)imageName;
101
118- (NSString *)description;
119
120@end
121
122NS_ASSUME_NONNULL_END
123
124#endif /* PglPicture_h */
表示放置在標籤上的圖片(點陣圖),使用 PGL 指令。
定义 PglPicture.h:40
id< IPoint > Start
圖片的起始位置。
定义 PglPicture.h:52
id< IRuler > Ruler
用於定位或縮放的尺規物件。
定义 PglPicture.h:76
NSString * ImageName
圖片資源名稱。
定义 PglPicture.h:64
NSString * description()
將圖片物件轉換為 PGL 指令字串。
用于在標籤上放置圖像的圖片介面。
定义 IPicture.h:25