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