forked from kohsuke/com4j
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIFontDisp.java
More file actions
175 lines (157 loc) · 3.43 KB
/
Copy pathIFontDisp.java
File metadata and controls
175 lines (157 loc) · 3.43 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
package com4j.stdole;
import com4j.*;
/**
*
* <p>
* This interface was generated using tlbimp on stdole2.tlb
* </p>
*/
@IID("{00020400-0000-0000-C000-000000000046}")
public interface IFontDisp extends Com4jObject {
// Methods:
// Properties:
/**
* <p>
* Getter method for the COM property "Name"
* </p>
* @return The COM property Name as a java.lang.String
*/
@DISPID(0)
@PropGet
java.lang.String getName();
/**
* <p>
* Setter method for the COM property "Name"
* </p>
* @param newValue The new value for the COM property Name as a java.lang.String
*/
@DISPID(0)
@PropPut
void setName(java.lang.String newValue);
/**
* <p>
* Getter method for the COM property "Size"
* </p>
* @return The COM property Size as a java.math.BigDecimal
*/
@DISPID(2)
@PropGet
java.math.BigDecimal getSize();
/**
* <p>
* Setter method for the COM property "Size"
* </p>
* @param newValue The new value for the COM property Size as a java.math.BigDecimal
*/
@DISPID(2)
@PropPut
void setSize(java.math.BigDecimal newValue);
/**
* <p>
* Getter method for the COM property "Bold"
* </p>
* @return The COM property Bold as a boolean
*/
@DISPID(3)
@PropGet
boolean getBold();
/**
* <p>
* Setter method for the COM property "Bold"
* </p>
* @param newValue The new value for the COM property Bold as a boolean
*/
@DISPID(3)
@PropPut
void setBold(boolean newValue);
/**
* <p>
* Getter method for the COM property "Italic"
* </p>
* @return The COM property Italic as a boolean
*/
@DISPID(4)
@PropGet
boolean getItalic();
/**
* <p>
* Setter method for the COM property "Italic"
* </p>
* @param newValue The new value for the COM property Italic as a boolean
*/
@DISPID(4)
@PropPut
void setItalic(boolean newValue);
/**
* <p>
* Getter method for the COM property "Underline"
* </p>
* @return The COM property Underline as a boolean
*/
@DISPID(5)
@PropGet
boolean getUnderline();
/**
* <p>
* Setter method for the COM property "Underline"
* </p>
* @param newValue The new value for the COM property Underline as a boolean
*/
@DISPID(5)
@PropPut
void setUnderline(boolean newValue);
/**
* <p>
* Getter method for the COM property "Strikethrough"
* </p>
* @return The COM property Strikethrough as a boolean
*/
@DISPID(6)
@PropGet
boolean getStrikethrough();
/**
* <p>
* Setter method for the COM property "Strikethrough"
* </p>
* @param newValue The new value for the COM property Strikethrough as a boolean
*/
@DISPID(6)
@PropPut
void setStrikethrough(boolean newValue);
/**
* <p>
* Getter method for the COM property "Weight"
* </p>
* @return The COM property Weight as a short
*/
@DISPID(7)
@PropGet
short getWeight();
/**
* <p>
* Setter method for the COM property "Weight"
* </p>
* @param newValue The new value for the COM property Weight as a short
*/
@DISPID(7)
@PropPut
void setWeight(short newValue);
/**
* <p>
* Getter method for the COM property "Charset"
* </p>
* @return The COM property Charset as a short
*/
@DISPID(8)
@PropGet
short getCharset();
/**
* <p>
* Setter method for the COM property "Charset"
* </p>
* @param newValue The new value for the COM property Charset as a short
*/
@DISPID(8)
@PropPut
void setCharset(short newValue);
}