CustomiOSApi  1.06
 All Classes Functions Enumerations Enumerator Pages
/Users/sviluppo/Documents/sviluppo/CustomiOSApi/CustomiOSApi/CustomiOSApi/PrinterFont.h
1 //
2 // PrinterFont.h
3 // CustomiOSApi
4 //
5 // Created by CUSTOM on 01/07/13.
6 // Copyright (c) 2013 CUSTOM. All rights reserved.
7 //
8 
9 #ifndef PRINTERFONT_H_
10 #define PRINTERFONT_H_
11 
12 #import <Foundation/Foundation.h>
13 #import <stdio.h>
14 
18 @interface PrinterFont : NSObject{
19 
20  @public
21 
22  //************************************************************************************************
23  // FONT SIZE
24  //************************************************************************************************
25 
29  enum FontSize
30  {
63  };
64 
65  //************************************************************************************************
66  // FONT JUSTIFICATION
67  //************************************************************************************************
68 
73  {
86  };
87 
88  //************************************************************************************************
89  // FONT TYPE
90  //************************************************************************************************
91 
95  enum FontType
96  {
105  };
106 
107  //************************************************************************************************
108  // INTERNATIONAL CHARSET
109  //************************************************************************************************
110 
115  {
140  };
141 
142  @protected
143 
144  @private
145 
146 }
147 
151 - (enum FontSize) GetCharWidth;
152 
158 - (void) SetCharWidth:(enum FontSize)value :(NSError**)error;
159 
163 - (enum FontSize) GetCharHeight;
164 
170 - (void) SetCharHeight:(enum FontSize)value :(NSError**)error;
171 
175 - (Boolean) GetEmphasized;
176 
181 - (void) SetEmphasized:(Boolean)value;
182 
186 - (Boolean) GetItalic;
187 
192 - (void) SetItalic:(Boolean)value;
193 
197 - (Boolean) GetUnderline;
198 
203 - (void) SetUnderline:(Boolean)value;
204 
213 - (enum FontJustification) GetJustification;
214 
226 - (void) SetJustification:(enum FontJustification)value :(NSError**)error;
227 
235 - (enum FontType) GetCharFontType;
236 
247 - (void) SetCharFontType:(enum FontType)value :(NSError**)error;
248 
260 - (enum FontIntCharset) GetInternationalCharSet;
261 
276 - (void) SetInternationalCharSet:(enum FontIntCharset)value :(NSError**)error;
277 
282 - (NSStringEncoding) GetEncodingCharSet;
283 
291 - (void) SetEncodingCharSet:(NSStringEncoding)value :(NSError**)error;
292 
293 @end
294 
295 #endif