UniPRT SDK v1.0.0.0
 
Loading...
Searching...
No Matches
_PglText.h
1//
2// _PglText.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/24.
6//
7
8#ifndef _PglText_h
9#define _PglText_h
10
11#import <Foundation/Foundation.h>
12
13#import <UniPRT/AText.h>
14#import <UniPRT/PglFont.h>
15#import <UniPRT/PrintPlane.h>
16#import <UniPRT/PglTranslate.h>
17#import <UniPRT/Defaults.h>
18#import <UniPRT/PglAlphanumeric.h>
19#import <UniPRT/FontSize.h>
20
46@interface _PglText : AText
47
64- (instancetype)init;
65
85- (instancetype)initWithText:(id<ITextItem>)text;
86
111- (NSString *)description;
112
113@end
114
115#endif /* _PglText_h */
A class representing a text object.
Definition _PglText.h:47
instancetype init()
Initializes a new instance of the _PglText class.
NSString * description()
Returns a string that can be sent to the printer.
Base class for AText.
Definition AText.h:29