UniPRT SDK v1.0.0.0
 
载入中...
搜索中...
未找到
PglLabel.h
1//
2// PglLabel.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/24.
6//
7
8#ifndef PglLabel_h
9#define PglLabel_h
10
11#import <Foundation/Foundation.h>
12#import <UniPRT/PglForm.h>
13#import <UniPRT/PglScale.h>
14
40@interface PglLabel : NSObject
41
52@property (nonatomic, strong) PglForm *form;
53
64@property (nonatomic, strong) PglScale *scale;
65
76@property (nonatomic, copy) NSString *name;
77
97- (instancetype)initWithName:(NSString *)name;
98
115- (void)addObject:(id)addObject;
116
142- (void)addRawContent:(NSString *)rawContent;
143
160- (NSString *)description;
161
162@end
163
164#endif /* PglLabel_h */
表示一个可以转换为印表机语言语法的标签类。
Definition PglLabel.h:41
NSString * description()
返回可以发送到印表机的字符串。
PglScale * scale
与标签相关联的比例。
Definition PglLabel.h:64
PglForm * form
与标签相关联的格式。
Definition PglLabel.h:52
NSString * name
标签的名称。
Definition PglLabel.h:76