forked from kohsuke/com4j
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIFont.java
More file actions
257 lines (189 loc) · 3.92 KB
/
Copy pathIFont.java
File metadata and controls
257 lines (189 loc) · 3.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
package com4j.stdole;
import com4j.*;
/**
* Font Object
* <p>
* This interface was generated using tlbimp on stdole2.tlb
* </p>
*/
@IID("{BEF6E002-A874-101A-8BBA-00AA00300CAB}")
public interface IFont extends Com4jObject {
// Methods:
/**
* <p>
* Getter method for the COM property "Name"
* </p>
* @return Returns a value of type java.lang.String
*/
@VTID(3)
java.lang.String getName();
/**
* <p>
* Setter method for the COM property "Name"
* </p>
* @param pname Mandatory java.lang.String parameter.
*/
@VTID(4)
void setName(
java.lang.String pname);
/**
* <p>
* Getter method for the COM property "Size"
* </p>
* @return Returns a value of type java.math.BigDecimal
*/
@VTID(5)
@ReturnValue(type=NativeType.Currency)
java.math.BigDecimal getSize();
/**
* <p>
* Setter method for the COM property "Size"
* </p>
* @param psize Mandatory java.math.BigDecimal parameter.
*/
@VTID(6)
void setSize(
@MarshalAs(NativeType.Currency) java.math.BigDecimal psize);
/**
* <p>
* Getter method for the COM property "Bold"
* </p>
* @return Returns a value of type boolean
*/
@VTID(7)
boolean getBold();
/**
* <p>
* Setter method for the COM property "Bold"
* </p>
* @param pbold Mandatory boolean parameter.
*/
@VTID(8)
void setBold(
boolean pbold);
/**
* <p>
* Getter method for the COM property "Italic"
* </p>
* @return Returns a value of type boolean
*/
@VTID(9)
boolean getItalic();
/**
* <p>
* Setter method for the COM property "Italic"
* </p>
* @param pitalic Mandatory boolean parameter.
*/
@VTID(10)
void setItalic(
boolean pitalic);
/**
* <p>
* Getter method for the COM property "Underline"
* </p>
* @return Returns a value of type boolean
*/
@VTID(11)
boolean getUnderline();
/**
* <p>
* Setter method for the COM property "Underline"
* </p>
* @param punderline Mandatory boolean parameter.
*/
@VTID(12)
void setUnderline(
boolean punderline);
/**
* <p>
* Getter method for the COM property "Strikethrough"
* </p>
* @return Returns a value of type boolean
*/
@VTID(13)
boolean getStrikethrough();
/**
* <p>
* Setter method for the COM property "Strikethrough"
* </p>
* @param pstrikethrough Mandatory boolean parameter.
*/
@VTID(14)
void setStrikethrough(
boolean pstrikethrough);
/**
* <p>
* Getter method for the COM property "Weight"
* </p>
* @return Returns a value of type short
*/
@VTID(15)
short getWeight();
/**
* <p>
* Setter method for the COM property "Weight"
* </p>
* @param pweight Mandatory short parameter.
*/
@VTID(16)
void setWeight(
short pweight);
/**
* <p>
* Getter method for the COM property "Charset"
* </p>
* @return Returns a value of type short
*/
@VTID(17)
short getCharset();
/**
* <p>
* Setter method for the COM property "Charset"
* </p>
* @param pcharset Mandatory short parameter.
*/
@VTID(18)
void setCharset(
short pcharset);
/**
* <p>
* Getter method for the COM property "hFont"
* </p>
* @return Returns a value of type int
*/
@VTID(19)
int getHFont();
/**
* @return Returns a value of type stdole.stdole.IFont
*/
@VTID(20)
com4j.stdole.IFont clone();
/**
* @param pfontOther Mandatory stdole.stdole.IFont parameter.
*/
@VTID(21)
void isEqual(
com4j.stdole.IFont pfontOther);
/**
* @param cyLogical Mandatory int parameter.
* @param cyHimetric Mandatory int parameter.
*/
@VTID(22)
void setRatio(
int cyLogical,
int cyHimetric);
/**
* @param hFont Mandatory int parameter.
*/
@VTID(23)
void addRefHfont(
int hFont);
/**
* @param hFont Mandatory int parameter.
*/
@VTID(24)
void releaseHfont(
int hFont);
// Properties:
}