개정판 fcec1a35
issue #968: fixed 화면에서의 Line 두께와 Final PDF 에서 생성한 Line 두께가 차이가 심한 현상.
Change-Id: I978d7124fec49d4b37697b90274f4c53145306b2
FinalService/KCOM_FinalService/KCOM_FinalService/bin/Debug/itextsharp.xml | ||
---|---|---|
1 |
<?xml version="1.0"?> |
|
2 |
<doc> |
|
3 |
<assembly> |
|
4 |
<name>itextsharp</name> |
|
5 |
</assembly> |
|
6 |
<members> |
|
7 |
<member name="T:iTextSharp.text.Anchor"> |
|
8 |
<summary> |
|
9 |
An Anchor can be a reference or a destination of a reference. |
|
10 |
</summary> |
|
11 |
<remarks> |
|
12 |
An Anchor is a special kind of <see cref="T:iTextSharp.text.Phrase"/>. |
|
13 |
It is constructed in the same way. |
|
14 |
</remarks> |
|
15 |
<seealso cref="T:iTextSharp.text.Element"/> |
|
16 |
<seealso cref="T:iTextSharp.text.Phrase"/> |
|
17 |
</member> |
|
18 |
<member name="T:iTextSharp.text.Phrase"> |
|
19 |
<summary> |
|
20 |
A Phrase is a series of Chunks. |
|
21 |
</summary> |
|
22 |
<remarks> |
|
23 |
A Phrase has a main Font, but some chunks |
|
24 |
within the phrase can have a Font that differs from the |
|
25 |
main Font. All the Chunks in a Phrase |
|
26 |
have the same leading. |
|
27 |
</remarks> |
|
28 |
<example> |
|
29 |
<code> |
|
30 |
// When no parameters are passed, the default leading = 16 |
|
31 |
<strong>Phrase phrase0 = new Phrase(); |
|
32 |
Phrase phrase1 = new Phrase("this is a phrase");</strong> |
|
33 |
// In this example the leading is passed as a parameter |
|
34 |
<strong>Phrase phrase2 = new Phrase(16, "this is a phrase with leading 16");</strong> |
|
35 |
// When a Font is passed (explicitely or embedded in a chunk), the default leading = 1.5 * size of the font |
|
36 |
<strong>Phrase phrase3 = new Phrase("this is a phrase with a red, normal font Courier, size 12", FontFactory.GetFont(FontFactory.COURIER, 12, Font.NORMAL, new Color(255, 0, 0))); |
|
37 |
Phrase phrase4 = new Phrase(new Chunk("this is a phrase")); |
|
38 |
Phrase phrase5 = new Phrase(18, new Chunk("this is a phrase", FontFactory.GetFont(FontFactory.HELVETICA, 16, Font.BOLD, new Color(255, 0, 0)));</strong> |
|
39 |
</code> |
|
40 |
</example> |
|
41 |
</member> |
|
42 |
<member name="T:iTextSharp.text.ITextElementArray"> |
|
43 |
<summary> |
|
44 |
Interface for a text element to which other objects can be added. |
|
45 |
</summary> |
|
46 |
<seealso cref="T:iTextSharp.text.Phrase"/> |
|
47 |
<seealso cref="T:iTextSharp.text.Paragraph"/> |
|
48 |
<seealso cref="T:iTextSharp.text.Section"/> |
|
49 |
<seealso cref="T:iTextSharp.text.ListItem"/> |
|
50 |
<seealso cref="T:iTextSharp.text.Chapter"/> |
|
51 |
<seealso cref="T:iTextSharp.text.Anchor"/> |
|
52 |
<seealso cref="T:iTextSharp.text.Cell"/> |
|
53 |
</member> |
|
54 |
<member name="T:iTextSharp.text.IElement"> |
|
55 |
<summary> |
|
56 |
Interface for a text element. |
|
57 |
</summary> |
|
58 |
<seealso cref="T:iTextSharp.text.Anchor"/> |
|
59 |
<seealso cref="T:iTextSharp.text.Cell"/> |
|
60 |
<seealso cref="T:iTextSharp.text.Chapter"/> |
|
61 |
<seealso cref="T:iTextSharp.text.Chunk"/> |
|
62 |
<seealso cref="T:iTextSharp.text.Gif"/> |
|
63 |
<seealso cref="T:iTextSharp.text.Graphic"/> |
|
64 |
<seealso cref="T:iTextSharp.text.Header"/> |
|
65 |
<seealso cref="T:iTextSharp.text.Image"/> |
|
66 |
<seealso cref="T:iTextSharp.text.Jpeg"/> |
|
67 |
<seealso cref="T:iTextSharp.text.List"/> |
|
68 |
<seealso cref="T:iTextSharp.text.ListItem"/> |
|
69 |
<seealso cref="T:iTextSharp.text.Meta"/> |
|
70 |
<seealso cref="T:iTextSharp.text.Paragraph"/> |
|
71 |
<seealso cref="T:iTextSharp.text.Phrase"/> |
|
72 |
<seealso cref="T:iTextSharp.text.Rectangle"/> |
|
73 |
<seealso cref="T:iTextSharp.text.Row"/> |
|
74 |
<seealso cref="T:iTextSharp.text.Section"/> |
|
75 |
<seealso cref="T:iTextSharp.text.Table"/> |
|
76 |
</member> |
|
77 |
<member name="M:iTextSharp.text.IElement.Process(iTextSharp.text.IElementListener)"> |
|
78 |
<summary> |
|
79 |
Processes the element by adding it (or the different parts) to an |
|
80 |
IElementListener. |
|
81 |
</summary> |
|
82 |
<param name="listener">an IElementListener</param> |
|
83 |
<returns>true if the element was processed successfully</returns> |
|
84 |
</member> |
|
85 |
<member name="M:iTextSharp.text.IElement.IsContent"> |
|
86 |
Checks if this element is a content object. |
|
87 |
If not, it's a metadata object. |
|
88 |
@since iText 2.0.8 |
|
89 |
@return true if this is a 'content' element; false if this is a 'medadata' element |
|
90 |
</member> |
|
91 |
<member name="M:iTextSharp.text.IElement.IsNestable"> |
|
92 |
Checks if this element is nestable. |
|
93 |
@since iText 2.0.8 |
|
94 |
@return true if this element can be nested inside other elements. |
|
95 |
</member> |
|
96 |
<member name="M:iTextSharp.text.IElement.ToString"> |
|
97 |
<summary> |
|
98 |
Gets the content of the text element. |
|
99 |
</summary> |
|
100 |
<returns>the content of the text element</returns> |
|
101 |
</member> |
|
102 |
<member name="P:iTextSharp.text.IElement.Type"> |
|
103 |
<summary> |
|
104 |
Gets the type of the text element. |
|
105 |
</summary> |
|
106 |
<value>a type</value> |
|
107 |
</member> |
|
108 |
<member name="P:iTextSharp.text.IElement.Chunks"> |
|
109 |
<summary> |
|
110 |
Gets all the chunks in this element. |
|
111 |
</summary> |
|
112 |
<value>an ArrayList</value> |
|
113 |
</member> |
|
114 |
<member name="M:iTextSharp.text.ITextElementArray.Add(iTextSharp.text.IElement)"> |
|
115 |
<summary> |
|
116 |
Adds an object to the TextElementArray. |
|
117 |
</summary> |
|
118 |
<param name="o">an object that has to be added</param> |
|
119 |
<returns>true if the addition succeeded; false otherwise</returns> |
|
120 |
</member> |
|
121 |
<member name="F:iTextSharp.text.Phrase.leading"> |
|
122 |
<summary>This is the leading of this phrase.</summary> |
|
123 |
</member> |
|
124 |
<member name="F:iTextSharp.text.Phrase.multipliedLeading"> |
|
125 |
The text leading that is multiplied by the biggest font size in the line. |
|
126 |
</member> |
|
127 |
<member name="F:iTextSharp.text.Phrase.font"> |
|
128 |
<summary> This is the font of this phrase. </summary> |
|
129 |
</member> |
|
130 |
<member name="F:iTextSharp.text.Phrase.hyphenation"> |
|
131 |
Null, unless the Phrase has to be hyphenated. |
|
132 |
@since 2.1.2 |
|
133 |
</member> |
|
134 |
<member name="F:iTextSharp.text.Phrase.tabSettings"> |
|
135 |
Predefined tab position and properties(alignment, leader and etc.); |
|
136 |
@since 5.4.1 |
|
137 |
</member> |
|
138 |
<member name="M:iTextSharp.text.Phrase.#ctor"> |
|
139 |
<summary> |
|
140 |
Constructs a Phrase without specifying a leading. |
|
141 |
</summary> |
|
142 |
<overloads> |
|
143 |
Has nine overloads. |
|
144 |
</overloads> |
|
145 |
</member> |
|
146 |
<member name="M:iTextSharp.text.Phrase.#ctor(iTextSharp.text.Phrase)"> |
|
147 |
Copy constructor for <CODE>Phrase</CODE>. |
|
148 |
</member> |
|
149 |
<member name="M:iTextSharp.text.Phrase.#ctor(System.Single)"> |
|
150 |
<summary> |
|
151 |
Constructs a Phrase with a certain leading. |
|
152 |
</summary> |
|
153 |
<param name="leading">the leading</param> |
|
154 |
</member> |
|
155 |
<member name="M:iTextSharp.text.Phrase.#ctor(iTextSharp.text.Chunk)"> |
|
156 |
<summary> |
|
157 |
Constructs a Phrase with a certain Chunk. |
|
158 |
</summary> |
|
159 |
<param name="chunk">a Chunk</param> |
|
160 |
</member> |
|
161 |
<member name="M:iTextSharp.text.Phrase.#ctor(System.Single,iTextSharp.text.Chunk)"> |
|
162 |
<summary> |
|
163 |
Constructs a Phrase with a certain Chunk and a certain leading. |
|
164 |
</summary> |
|
165 |
<param name="leading">the leading</param> |
|
166 |
<param name="chunk">a Chunk</param> |
|
167 |
</member> |
|
168 |
<member name="M:iTextSharp.text.Phrase.#ctor(System.String)"> |
|
169 |
<summary> |
|
170 |
Constructs a Phrase with a certain string. |
|
171 |
</summary> |
|
172 |
<param name="str">a string</param> |
|
173 |
</member> |
|
174 |
<member name="M:iTextSharp.text.Phrase.#ctor(System.String,iTextSharp.text.Font)"> |
|
175 |
<summary> |
|
176 |
Constructs a Phrase with a certain string and a certain Font. |
|
177 |
</summary> |
|
178 |
<param name="str">a string</param> |
|
179 |
<param name="font">a Font</param> |
|
180 |
</member> |
|
181 |
<member name="M:iTextSharp.text.Phrase.#ctor(System.Single,System.String)"> |
|
182 |
<summary> |
|
183 |
Constructs a Phrase with a certain leading and a certain string. |
|
184 |
</summary> |
|
185 |
<param name="leading">the leading</param> |
|
186 |
<param name="str">a string</param> |
|
187 |
</member> |
|
188 |
<member name="M:iTextSharp.text.Phrase.Process(iTextSharp.text.IElementListener)"> |
|
189 |
<summary> |
|
190 |
Processes the element by adding it (or the different parts) to an |
|
191 |
<see cref="T:iTextSharp.text.IElementListener"/>. |
|
192 |
</summary> |
|
193 |
<param name="listener">an IElementListener</param> |
|
194 |
<returns>true if the element was processed successfully</returns> |
|
195 |
</member> |
|
196 |
<member name="M:iTextSharp.text.Phrase.IsContent"> |
|
197 |
@see com.lowagie.text.Element#isContent() |
|
198 |
@since iText 2.0.8 |
|
199 |
</member> |
|
200 |
<member name="M:iTextSharp.text.Phrase.IsNestable"> |
|
201 |
@see com.lowagie.text.Element#isNestable() |
|
202 |
@since iText 2.0.8 |
|
203 |
</member> |
|
204 |
<member name="M:iTextSharp.text.Phrase.Add(System.Int32,iTextSharp.text.IElement)"> |
|
205 |
<summary> |
|
206 |
Adds a Chunk, an Anchor or another Phrase |
|
207 |
to this Phrase. |
|
208 |
</summary> |
|
209 |
<param name="index">index at which the specified element is to be inserted</param> |
|
210 |
<param name="o">an object of type Chunk, Anchor, or Phrase</param> |
|
211 |
</member> |
|
212 |
<member name="M:iTextSharp.text.Phrase.Add(System.String)"> |
|
213 |
Adds a <CODE>String</CODE> to this <CODE>Phrase</CODE>. |
|
214 |
|
|
215 |
@param s a string |
|
216 |
@return a boolean |
|
217 |
@since 5.0.1 |
|
218 |
</member> |
|
219 |
<member name="M:iTextSharp.text.Phrase.Add(iTextSharp.text.IElement)"> |
|
220 |
<summary> |
|
221 |
Adds a Chunk, Anchor or another Phrase |
|
222 |
to this Phrase. |
|
223 |
</summary> |
|
224 |
<param name="o">an object of type Chunk, Anchor or Phrase</param> |
|
225 |
<returns>a bool</returns> |
|
226 |
</member> |
|
227 |
<member name="M:iTextSharp.text.Phrase.AddAll``1(System.Collections.Generic.ICollection{``0})"> |
|
228 |
<summary> |
|
229 |
Adds a collection of Chunks |
|
230 |
to this Phrase. |
|
231 |
</summary> |
|
232 |
<param name="collection">a collection of Chunks, Anchors and Phrases.</param> |
|
233 |
<returns>true if the action succeeded, false if not.</returns> |
|
234 |
</member> |
|
235 |
<member name="M:iTextSharp.text.Phrase.AddChunk(iTextSharp.text.Chunk)"> |
|
236 |
<summary> |
|
237 |
Adds a Chunk. |
|
238 |
</summary> |
|
239 |
<remarks> |
|
240 |
This method is a hack to solve a problem I had with phrases that were split between chunks |
|
241 |
in the wrong place. |
|
242 |
</remarks> |
|
243 |
<param name="chunk">a Chunk</param> |
|
244 |
<returns>a bool</returns> |
|
245 |
</member> |
|
246 |
<member name="M:iTextSharp.text.Phrase.AddSpecial(iTextSharp.text.IElement)"> |
|
247 |
<summary> |
|
248 |
Adds a Object to the Paragraph. |
|
249 |
</summary> |
|
250 |
<param name="obj">the object to add.</param> |
|
251 |
</member> |
|
252 |
<member name="M:iTextSharp.text.Phrase.IsEmpty"> |
|
253 |
<summary> |
|
254 |
Checks is this Phrase contains no or 1 empty Chunk. |
|
255 |
</summary> |
|
256 |
<returns> |
|
257 |
false if the Phrase |
|
258 |
contains more than one or more non-emptyChunks. |
|
259 |
</returns> |
|
260 |
</member> |
|
261 |
<!-- Badly formed XML comment ignored for member "M:iTextSharp.text.Phrase.SetLeading(System.Single,System.Single)" --> |
|
262 |
<member name="M:iTextSharp.text.Phrase.#ctor(System.Boolean)"> |
|
263 |
Constructs a Phrase that can be used in the static GetInstance() method. |
|
264 |
@param dummy a dummy parameter |
|
265 |
</member> |
|
266 |
<member name="M:iTextSharp.text.Phrase.GetInstance(System.String)"> |
|
267 |
Gets a special kind of Phrase that changes some characters into corresponding symbols. |
|
268 |
@param string |
|
269 |
@return a newly constructed Phrase |
|
270 |
</member> |
|
271 |
<member name="M:iTextSharp.text.Phrase.GetInstance(System.Int32,System.String)"> |
|
272 |
Gets a special kind of Phrase that changes some characters into corresponding symbols. |
|
273 |
@param leading |
|
274 |
@param string |
|
275 |
@return a newly constructed Phrase |
|
276 |
</member> |
|
277 |
<member name="M:iTextSharp.text.Phrase.GetInstance(System.Int32,System.String,iTextSharp.text.Font)"> |
|
278 |
Gets a special kind of Phrase that changes some characters into corresponding symbols. |
|
279 |
@param leading |
|
280 |
@param string |
|
281 |
@param font |
|
282 |
@return a newly constructed Phrase |
|
283 |
</member> |
|
284 |
<member name="P:iTextSharp.text.Phrase.Type"> |
|
285 |
<summary> |
|
286 |
Gets the type of the text element. |
|
287 |
</summary> |
|
288 |
<value>a type</value> |
|
289 |
</member> |
|
290 |
<member name="P:iTextSharp.text.Phrase.Chunks"> |
|
291 |
<summary> |
|
292 |
Gets all the chunks in this element. |
|
293 |
</summary> |
|
294 |
<value>an ArrayList</value> |
|
295 |
</member> |
|
296 |
<!-- Badly formed XML comment ignored for member "P:iTextSharp.text.Phrase.MultipliedLeading" --> |
|
297 |
<member name="P:iTextSharp.text.Phrase.Leading"> |
|
298 |
<summary> |
|
299 |
Gets/sets the leading of this phrase. |
|
300 |
</summary> |
|
301 |
<value>the linespacing</value> |
|
302 |
</member> |
|
303 |
<member name="P:iTextSharp.text.Phrase.TotalLeading"> |
|
304 |
Gets the total leading. |
|
305 |
This method is based on the assumption that the |
|
306 |
font of the Paragraph is the font of all the elements |
|
307 |
that make part of the paragraph. This isn't necessarily |
|
308 |
true. |
|
309 |
@return the total leading (fixed and multiplied) |
|
310 |
</member> |
|
311 |
<member name="P:iTextSharp.text.Phrase.Font"> |
|
312 |
<summary> |
|
313 |
Gets the font of the first Chunk that appears in this Phrase. |
|
314 |
</summary> |
|
315 |
<value>a Font</value> |
|
316 |
</member> |
|
317 |
<member name="P:iTextSharp.text.Phrase.Content"> |
|
318 |
Returns the content as a String object. |
|
319 |
This method differs from toString because toString will return an ArrayList with the toString value of the Chunks in this Phrase. |
|
320 |
</member> |
|
321 |
<member name="P:iTextSharp.text.Phrase.Hyphenation"> |
|
322 |
Setter/getter for the hyphenation. |
|
323 |
@param hyphenation a HyphenationEvent instance |
|
324 |
@since 2.1.2 |
|
325 |
</member> |
|
326 |
<member name="P:iTextSharp.text.Phrase.TabSettings"> |
|
327 |
Setter/getter for the tabSettings. |
|
328 |
@param tabSettings a TabSettings instance |
|
329 |
@since 5.4.1 |
|
330 |
</member> |
|
331 |
<member name="F:iTextSharp.text.Anchor.name"> |
|
332 |
<summary> |
|
333 |
This is the name of the Anchor. |
|
334 |
</summary> |
|
335 |
</member> |
|
336 |
<member name="F:iTextSharp.text.Anchor.reference"> |
|
337 |
<summary> |
|
338 |
This is the reference of the Anchor. |
|
339 |
</summary> |
|
340 |
</member> |
|
341 |
<member name="M:iTextSharp.text.Anchor.#ctor"> |
|
342 |
<summary> |
|
343 |
Constructs an Anchor without specifying a leading. |
|
344 |
</summary> |
|
345 |
<overloads> |
|
346 |
Has nine overloads. |
|
347 |
</overloads> |
|
348 |
</member> |
|
349 |
<member name="M:iTextSharp.text.Anchor.#ctor(System.Single)"> |
|
350 |
<summary> |
|
351 |
Constructs an Anchor with a certain leading. |
|
352 |
</summary> |
|
353 |
<param name="leading">the leading</param> |
|
354 |
</member> |
|
355 |
<member name="M:iTextSharp.text.Anchor.#ctor(iTextSharp.text.Chunk)"> |
|
356 |
<summary> |
|
357 |
Constructs an Anchor with a certain Chunk. |
|
358 |
</summary> |
|
359 |
<param name="chunk">a Chunk</param> |
|
360 |
</member> |
|
361 |
<member name="M:iTextSharp.text.Anchor.#ctor(System.String)"> |
|
362 |
<summary> |
|
363 |
Constructs an Anchor with a certain string. |
|
364 |
</summary> |
|
365 |
<param name="str">a string</param> |
|
366 |
</member> |
|
367 |
<member name="M:iTextSharp.text.Anchor.#ctor(System.String,iTextSharp.text.Font)"> |
|
368 |
<summary> |
|
369 |
Constructs an Anchor with a certain string |
|
370 |
and a certain Font. |
|
371 |
</summary> |
|
372 |
<param name="str">a string</param> |
|
373 |
<param name="font">a Font</param> |
|
374 |
</member> |
|
375 |
<member name="M:iTextSharp.text.Anchor.#ctor(System.Single,iTextSharp.text.Chunk)"> |
|
376 |
<summary> |
|
377 |
Constructs an Anchor with a certain Chunk |
|
378 |
and a certain leading. |
|
379 |
</summary> |
|
380 |
<param name="leading">the leading</param> |
|
381 |
<param name="chunk">a Chunk</param> |
|
382 |
</member> |
|
383 |
<member name="M:iTextSharp.text.Anchor.#ctor(System.Single,System.String)"> |
|
384 |
<summary> |
|
385 |
Constructs an Anchor with a certain leading |
|
386 |
and a certain string. |
|
387 |
</summary> |
|
388 |
<param name="leading">the leading</param> |
|
389 |
<param name="str">a string</param> |
|
390 |
</member> |
|
391 |
<member name="M:iTextSharp.text.Anchor.#ctor(System.Single,System.String,iTextSharp.text.Font)"> |
|
392 |
<summary> |
|
393 |
Constructs an Anchor with a certain leading, |
|
394 |
a certain string and a certain Font. |
|
395 |
</summary> |
|
396 |
<param name="leading">the leading</param> |
|
397 |
<param name="str">a string</param> |
|
398 |
<param name="font">a Font</param> |
|
399 |
</member> |
|
400 |
<member name="M:iTextSharp.text.Anchor.#ctor(iTextSharp.text.Phrase)"> |
|
401 |
Constructs an <CODE>Anchor</CODE> with a certain <CODE>Phrase</CODE>. |
|
402 |
|
|
403 |
@param phrase a <CODE>Phrase</CODE> |
|
404 |
</member> |
|
405 |
<member name="M:iTextSharp.text.Anchor.Process(iTextSharp.text.IElementListener)"> |
|
406 |
<summary> |
|
407 |
Processes the element by adding it (or the different parts) to an |
|
408 |
<see cref="T:iTextSharp.text.IElementListener"/> |
|
409 |
</summary> |
|
410 |
<param name="listener">an IElementListener</param> |
|
411 |
<returns>true if the element was processed successfully</returns> |
|
412 |
</member> |
|
413 |
<member name="M:iTextSharp.text.Anchor.ApplyAnchor(iTextSharp.text.Chunk,System.Boolean,System.Boolean)"> |
|
414 |
Applies the properties of the Anchor to a Chunk. |
|
415 |
@param chunk the Chunk (part of the Anchor) |
|
416 |
@param notGotoOK if true, this chunk will determine the local destination |
|
417 |
@param localDestination true if the chunk is a local goto and the reference a local destination |
|
418 |
@return the value of notGotoOK or false, if a previous Chunk was used to determine the local destination |
|
419 |
</member> |
|
420 |
<member name="P:iTextSharp.text.Anchor.Chunks"> |
|
421 |
<summary> |
|
422 |
Gets all the chunks in this element. |
|
423 |
</summary> |
|
424 |
<value>an ArrayList</value> |
|
425 |
</member> |
|
426 |
<member name="P:iTextSharp.text.Anchor.Type"> |
|
427 |
<summary> |
|
428 |
Gets the type of the text element. |
|
429 |
</summary> |
|
430 |
<value>a type</value> |
|
431 |
</member> |
|
432 |
<member name="P:iTextSharp.text.Anchor.Name"> |
|
433 |
<summary> |
|
434 |
Name of this Anchor. |
|
435 |
</summary> |
|
436 |
</member> |
|
437 |
<member name="P:iTextSharp.text.Anchor.Reference"> |
|
438 |
<summary> |
|
439 |
reference of this Anchor. |
|
440 |
</summary> |
|
441 |
</member> |
|
442 |
<member name="P:iTextSharp.text.Anchor.Url"> |
|
443 |
<summary> |
|
444 |
reference of this Anchor. |
|
445 |
</summary> |
|
446 |
<value>an Uri</value> |
|
447 |
</member> |
|
448 |
<member name="T:iTextSharp.text.Annotation"> |
|
449 |
<summary> |
|
450 |
An Annotation is a little note that can be added to a page |
|
451 |
on a document. |
|
452 |
</summary> |
|
453 |
<seealso cref="T:iTextSharp.text.Element"/> |
|
454 |
<seealso cref="T:iTextSharp.text.Anchor"/> |
|
455 |
</member> |
|
456 |
<member name="F:iTextSharp.text.Annotation.TEXT"> |
|
457 |
<summary>This is a possible annotation type.</summary> |
|
458 |
</member> |
|
459 |
<member name="F:iTextSharp.text.Annotation.URL_NET"> |
|
460 |
<summary>This is a possible annotation type.</summary> |
|
461 |
</member> |
|
462 |
<member name="F:iTextSharp.text.Annotation.URL_AS_STRING"> |
|
463 |
<summary>This is a possible annotation type.</summary> |
|
464 |
</member> |
|
465 |
<member name="F:iTextSharp.text.Annotation.FILE_DEST"> |
|
466 |
<summary>This is a possible annotation type.</summary> |
|
467 |
</member> |
|
468 |
<member name="F:iTextSharp.text.Annotation.FILE_PAGE"> |
|
469 |
<summary>This is a possible annotation type.</summary> |
|
470 |
</member> |
|
471 |
<member name="F:iTextSharp.text.Annotation.NAMED_DEST"> |
|
472 |
<summary>This is a possible annotation type.</summary> |
|
473 |
</member> |
|
474 |
<member name="F:iTextSharp.text.Annotation.LAUNCH"> |
|
475 |
<summary>This is a possible annotation type.</summary> |
|
476 |
</member> |
|
477 |
<member name="F:iTextSharp.text.Annotation.SCREEN"> |
|
478 |
<summary>This is a possible annotation type.</summary> |
|
479 |
</member> |
|
480 |
<member name="F:iTextSharp.text.Annotation.TITLE"> |
|
481 |
<summary>This is a possible attribute.</summary> |
|
482 |
</member> |
|
483 |
<member name="F:iTextSharp.text.Annotation.CONTENT"> |
|
484 |
<summary>This is a possible attribute.</summary> |
|
485 |
</member> |
|
486 |
<member name="F:iTextSharp.text.Annotation.URL"> |
|
487 |
<summary>This is a possible attribute.</summary> |
|
488 |
</member> |
|
489 |
<member name="F:iTextSharp.text.Annotation.FILE"> |
|
490 |
<summary>This is a possible attribute.</summary> |
|
491 |
</member> |
|
492 |
<member name="F:iTextSharp.text.Annotation.DESTINATION"> |
|
493 |
<summary>This is a possible attribute.</summary> |
|
494 |
</member> |
|
495 |
<member name="F:iTextSharp.text.Annotation.PAGE"> |
|
496 |
<summary>This is a possible attribute.</summary> |
|
497 |
</member> |
|
498 |
<member name="F:iTextSharp.text.Annotation.NAMED"> |
|
499 |
<summary>This is a possible attribute.</summary> |
|
500 |
</member> |
|
501 |
<member name="F:iTextSharp.text.Annotation.APPLICATION"> |
|
502 |
<summary>This is a possible attribute.</summary> |
|
503 |
</member> |
|
504 |
<member name="F:iTextSharp.text.Annotation.PARAMETERS"> |
|
505 |
<summary>This is a possible attribute.</summary> |
|
506 |
</member> |
|
507 |
<member name="F:iTextSharp.text.Annotation.OPERATION"> |
|
508 |
<summary>This is a possible attribute.</summary> |
|
509 |
</member> |
|
510 |
<member name="F:iTextSharp.text.Annotation.DEFAULTDIR"> |
|
511 |
<summary>This is a possible attribute.</summary> |
|
512 |
</member> |
|
513 |
<member name="F:iTextSharp.text.Annotation.LLX"> |
|
514 |
<summary>This is a possible attribute.</summary> |
|
515 |
</member> |
|
516 |
<member name="F:iTextSharp.text.Annotation.LLY"> |
|
517 |
<summary>This is a possible attribute.</summary> |
|
518 |
</member> |
|
519 |
<member name="F:iTextSharp.text.Annotation.URX"> |
|
520 |
<summary>This is a possible attribute.</summary> |
|
521 |
</member> |
|
522 |
<member name="F:iTextSharp.text.Annotation.URY"> |
|
523 |
<summary>This is a possible attribute.</summary> |
|
524 |
</member> |
|
525 |
<member name="F:iTextSharp.text.Annotation.MIMETYPE"> |
|
526 |
<summary>This is a possible attribute.</summary> |
|
527 |
</member> |
|
528 |
<member name="F:iTextSharp.text.Annotation.annotationtype"> |
|
529 |
<summary>This is the type of annotation.</summary> |
|
530 |
</member> |
|
531 |
<member name="F:iTextSharp.text.Annotation.annotationAttributes"> |
|
532 |
<summary>This is the title of the Annotation.</summary> |
|
533 |
</member> |
|
534 |
<member name="F:iTextSharp.text.Annotation.llx"> |
|
535 |
<summary>This is the lower left x-value</summary> |
|
536 |
</member> |
|
537 |
<member name="F:iTextSharp.text.Annotation.lly"> |
|
538 |
<summary>This is the lower left y-value</summary> |
|
539 |
</member> |
|
540 |
<member name="F:iTextSharp.text.Annotation.urx"> |
|
541 |
<summary>This is the upper right x-value</summary> |
|
542 |
</member> |
|
543 |
<member name="F:iTextSharp.text.Annotation.ury"> |
|
544 |
<summary>This is the upper right y-value</summary> |
|
545 |
</member> |
|
546 |
<member name="M:iTextSharp.text.Annotation.#ctor(System.Single,System.Single,System.Single,System.Single)"> |
|
547 |
<summary> |
|
548 |
Constructs an Annotation with a certain title and some text. |
|
549 |
</summary> |
|
550 |
<param name="llx">the lower left x-value</param> |
|
551 |
<param name="lly">the lower left y-value</param> |
|
552 |
<param name="urx">the upper right x-value</param> |
|
553 |
<param name="ury">the upper right y-value</param> |
|
554 |
</member> |
|
555 |
<member name="M:iTextSharp.text.Annotation.#ctor(System.String,System.String)"> |
|
556 |
<summary> |
|
557 |
Constructs an Annotation with a certain title and some text. |
|
558 |
</summary> |
|
559 |
<param name="title">the title of the annotation</param> |
|
560 |
<param name="text">the content of the annotation</param> |
|
561 |
</member> |
|
562 |
<member name="M:iTextSharp.text.Annotation.#ctor(System.String,System.String,System.Single,System.Single,System.Single,System.Single)"> |
|
563 |
<summary> |
|
564 |
Constructs an Annotation with a certain title and some text. |
|
565 |
</summary> |
|
566 |
<param name="title">the title of the annotation</param> |
|
567 |
<param name="text">the content of the annotation</param> |
|
568 |
<param name="llx">the lower left x-value</param> |
|
569 |
<param name="lly">the lower left y-value</param> |
|
570 |
<param name="urx">the upper right x-value</param> |
|
571 |
<param name="ury">the upper right y-value</param> |
|
572 |
</member> |
|
573 |
<member name="M:iTextSharp.text.Annotation.#ctor(System.Single,System.Single,System.Single,System.Single,System.Uri)"> |
|
574 |
<summary> |
|
575 |
Constructs an Annotation. |
|
576 |
</summary> |
|
577 |
<param name="llx">the lower left x-value</param> |
|
578 |
<param name="lly">the lower left y-value</param> |
|
579 |
<param name="urx">the upper right x-value</param> |
|
580 |
<param name="ury">the upper right y-value</param> |
|
581 |
<param name="url">the external reference</param> |
|
582 |
</member> |
|
583 |
<member name="M:iTextSharp.text.Annotation.#ctor(System.Single,System.Single,System.Single,System.Single,System.String)"> |
|
584 |
<summary> |
|
585 |
Constructs an Annotation. |
|
586 |
</summary> |
|
587 |
<param name="llx">the lower left x-value</param> |
|
588 |
<param name="lly">the lower left y-value</param> |
|
589 |
<param name="urx">the upper right x-value</param> |
|
590 |
<param name="ury">the upper right y-value</param> |
|
591 |
<param name="url">the external reference</param> |
|
592 |
</member> |
|
593 |
<member name="M:iTextSharp.text.Annotation.#ctor(System.Single,System.Single,System.Single,System.Single,System.String,System.String)"> |
|
594 |
<summary> |
|
595 |
Constructs an Annotation. |
|
596 |
</summary> |
|
597 |
<param name="llx">the lower left x-value</param> |
|
598 |
<param name="lly">the lower left y-value</param> |
|
599 |
<param name="urx">the upper right x-value</param> |
|
600 |
<param name="ury">the upper right y-value</param> |
|
601 |
<param name="file">an external PDF file</param> |
|
602 |
<param name="dest">the destination in this file</param> |
|
603 |
</member> |
|
604 |
<member name="M:iTextSharp.text.Annotation.#ctor(System.Single,System.Single,System.Single,System.Single,System.String,System.String,System.Boolean)"> |
|
605 |
<summary> |
|
606 |
Creates a Screen anotation to embed media clips |
|
607 |
</summary> |
|
608 |
<param name="llx">the lower left x-value</param> |
|
609 |
<param name="lly">the lower left y-value</param> |
|
610 |
<param name="urx">the upper right x-value</param> |
|
611 |
<param name="ury">the upper right y-value</param> |
|
612 |
<param name="moviePath">path to the media clip file</param> |
|
613 |
<param name="mimeType">mime type of the media</param> |
|
614 |
<param name="showOnDisplay">if true play on display of the page</param> |
|
615 |
</member> |
|
616 |
<member name="M:iTextSharp.text.Annotation.#ctor(System.Single,System.Single,System.Single,System.Single,System.String,System.Int32)"> |
|
617 |
<summary> |
|
618 |
Constructs an Annotation. |
|
619 |
</summary> |
|
620 |
<param name="llx">the lower left x-value</param> |
|
621 |
<param name="lly">the lower left y-value</param> |
|
622 |
<param name="urx">the upper right x-value</param> |
|
623 |
<param name="ury">the upper right y-value</param> |
|
624 |
<param name="file">an external PDF file</param> |
|
625 |
<param name="page">a page number in this file</param> |
|
626 |
</member> |
|
627 |
<member name="M:iTextSharp.text.Annotation.#ctor(System.Single,System.Single,System.Single,System.Single,System.Int32)"> |
|
628 |
<summary> |
|
629 |
Constructs an Annotation. |
|
630 |
</summary> |
|
631 |
<param name="llx">the lower left x-value</param> |
|
632 |
<param name="lly">the lower left y-value</param> |
|
633 |
<param name="urx">the upper right x-value</param> |
|
634 |
<param name="ury">the upper right y-value</param> |
|
635 |
<param name="named">a named destination in this file</param> |
|
636 |
<overloads> |
|
637 |
Has nine overloads. |
|
638 |
</overloads> |
|
639 |
</member> |
|
640 |
<member name="M:iTextSharp.text.Annotation.#ctor(System.Single,System.Single,System.Single,System.Single,System.String,System.String,System.String,System.String)"> |
|
641 |
<summary> |
|
642 |
Constructs an Annotation. |
|
643 |
</summary> |
|
644 |
<param name="llx">the lower left x-value</param> |
|
645 |
<param name="lly">the lower left y-value</param> |
|
646 |
<param name="urx">the upper right x-value</param> |
|
647 |
<param name="ury">the upper right y-value</param> |
|
648 |
<param name="application">an external application</param> |
|
649 |
<param name="parameters">parameters to pass to this application</param> |
|
650 |
<param name="operation">the operation to pass to this application</param> |
|
651 |
<param name="defaultdir">the default directory to run this application in</param> |
|
652 |
</member> |
|
653 |
<member name="M:iTextSharp.text.Annotation.Process(iTextSharp.text.IElementListener)"> |
|
654 |
<summary> |
|
655 |
Processes the element by adding it (or the different parts) to an |
|
656 |
IElementListener. |
|
657 |
</summary> |
|
658 |
<param name="listener">an IElementListener</param> |
|
659 |
<returns>true if the element was process successfully</returns> |
|
660 |
</member> |
|
661 |
<member name="M:iTextSharp.text.Annotation.SetDimensions(System.Single,System.Single,System.Single,System.Single)"> |
|
662 |
<summary> |
|
663 |
Sets the dimensions of this annotation. |
|
664 |
</summary> |
|
665 |
<param name="llx">the lower left x-value</param> |
|
666 |
<param name="lly">the lower left y-value</param> |
|
667 |
<param name="urx">the upper right x-value</param> |
|
668 |
<param name="ury">the upper right y-value</param> |
|
669 |
</member> |
|
670 |
<member name="M:iTextSharp.text.Annotation.GetLlx"> |
|
671 |
<summary> |
|
672 |
Returns the lower left x-value. |
|
673 |
</summary> |
|
674 |
<returns>a value</returns> |
|
675 |
</member> |
|
676 |
<member name="M:iTextSharp.text.Annotation.GetLly"> |
|
677 |
<summary> |
|
678 |
Returns the lower left y-value. |
|
679 |
</summary> |
|
680 |
<returns>a value</returns> |
|
681 |
</member> |
|
682 |
<member name="M:iTextSharp.text.Annotation.GetUrx"> |
|
683 |
<summary> |
|
684 |
Returns the uppper right x-value. |
|
685 |
</summary> |
|
686 |
<returns>a value</returns> |
|
687 |
</member> |
|
688 |
<member name="M:iTextSharp.text.Annotation.GetUry"> |
|
689 |
<summary> |
|
690 |
Returns the uppper right y-value. |
|
691 |
</summary> |
|
692 |
<returns>a value</returns> |
|
693 |
</member> |
|
694 |
<member name="M:iTextSharp.text.Annotation.GetLlx(System.Single)"> |
|
695 |
<summary> |
|
696 |
Returns the lower left x-value. |
|
697 |
</summary> |
|
698 |
<param name="def">the default value</param> |
|
699 |
<returns>a value</returns> |
|
700 |
</member> |
|
701 |
<member name="M:iTextSharp.text.Annotation.GetLly(System.Single)"> |
|
702 |
<summary> |
|
703 |
Returns the lower left y-value. |
|
704 |
</summary> |
|
705 |
<param name="def">the default value</param> |
|
706 |
<returns>a value</returns> |
|
707 |
</member> |
|
708 |
<member name="M:iTextSharp.text.Annotation.GetUrx(System.Single)"> |
|
709 |
<summary> |
|
710 |
Returns the upper right x-value. |
|
711 |
</summary> |
|
712 |
<param name="def">the default value</param> |
|
713 |
<returns>a value</returns> |
|
714 |
</member> |
|
715 |
<member name="M:iTextSharp.text.Annotation.GetUry(System.Single)"> |
|
716 |
<summary> |
|
717 |
Returns the upper right y-value. |
|
718 |
</summary> |
|
719 |
<param name="def">the default value</param> |
|
720 |
<returns>a value</returns> |
|
721 |
</member> |
|
722 |
<member name="M:iTextSharp.text.Annotation.IsContent"> |
|
723 |
@see com.lowagie.text.Element#isContent() |
|
724 |
@since iText 2.0.8 |
|
725 |
</member> |
|
726 |
<member name="M:iTextSharp.text.Annotation.IsNestable"> |
|
727 |
@see com.lowagie.text.Element#isNestable() |
|
728 |
@since iText 2.0.8 |
|
729 |
</member> |
|
730 |
<member name="P:iTextSharp.text.Annotation.Type"> |
|
731 |
<summary> |
|
732 |
Gets the type of the text element |
|
733 |
</summary> |
|
734 |
</member> |
|
735 |
<member name="P:iTextSharp.text.Annotation.Chunks"> |
|
736 |
<summary> |
|
737 |
Gets all the chunks in this element. |
|
738 |
</summary> |
|
739 |
<value>an ArrayList</value> |
|
740 |
</member> |
|
741 |
<member name="P:iTextSharp.text.Annotation.AnnotationType"> |
|
742 |
<summary> |
|
743 |
Returns the type of this Annotation. |
|
744 |
</summary> |
|
745 |
<value>a type</value> |
|
746 |
</member> |
|
747 |
<member name="P:iTextSharp.text.Annotation.Title"> |
|
748 |
<summary> |
|
749 |
Returns the title of this Annotation. |
|
750 |
</summary> |
|
751 |
<value>a name</value> |
|
752 |
</member> |
|
753 |
<member name="P:iTextSharp.text.Annotation.Content"> |
|
754 |
<summary> |
|
755 |
Gets the content of this Annotation. |
|
756 |
</summary> |
|
757 |
<value>a reference</value> |
|
758 |
</member> |
|
759 |
<member name="P:iTextSharp.text.Annotation.Attributes"> |
|
760 |
<summary> |
|
761 |
Gets the content of this Annotation. |
|
762 |
</summary> |
|
763 |
<value>a reference</value> |
|
764 |
</member> |
|
765 |
<member name="T:iTextSharp.text.BadElementException"> |
|
766 |
<summary> |
|
767 |
Signals an attempt to create an Element that hasn't got the right form. |
|
768 |
</summary> |
|
769 |
<seealso cref="T:iTextSharp.text.Cell"/> |
|
770 |
<seealso cref="T:iTextSharp.text.Table"/> |
|
771 |
</member> |
|
772 |
<member name="T:iTextSharp.text.DocumentException"> |
|
773 |
<summary> |
|
774 |
Signals that an error has occurred in a Document. |
|
775 |
</summary> |
|
776 |
<seealso cref="T:iTextSharp.text.BadElementException"/> |
|
777 |
<seealso cref="T:iTextSharp.text.Document"/> |
|
778 |
<seealso cref="T:iTextSharp.text.DocWriter"/> |
|
779 |
<seealso cref="T:iTextSharp.text.IDocListener"/> |
|
780 |
</member> |
|
781 |
<member name="M:iTextSharp.text.DocumentException.#ctor"> |
|
782 |
<summary> |
|
783 |
Constructs a new DocumentException |
|
784 |
</summary> |
|
785 |
<overloads> |
|
786 |
Has two overloads. |
|
787 |
</overloads> |
|
788 |
</member> |
|
789 |
<member name="M:iTextSharp.text.DocumentException.#ctor(System.String)"> |
|
790 |
<summary> |
|
791 |
Construct a new DocumentException |
|
792 |
</summary> |
|
793 |
<param name="message">error message</param> |
|
794 |
</member> |
|
795 |
<member name="M:iTextSharp.text.DocumentException.#ctor(System.String,System.Exception)"> |
|
796 |
<summary> |
|
797 |
Constructs a DocumentException with a message and a Exception. |
|
798 |
</summary> |
|
799 |
<param name="message">a message describing the exception</param> |
|
800 |
<param name="ex">an exception that has to be turned into a DocumentException</param> |
|
801 |
</member> |
|
802 |
<member name="T:iTextSharp.text.BaseColor"> |
|
803 |
<summary> |
|
804 |
Base class for Color, serves as wrapper class for <see cref="T:System.Drawing.Color"/> |
|
805 |
to allow extension. |
|
806 |
</summary> |
|
807 |
</member> |
|
808 |
<member name="M:iTextSharp.text.BaseColor.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)"> |
|
809 |
Construct a new BaseColor. |
|
810 |
@param red the value for the red gamma |
|
811 |
@param green the value for the green gamma |
|
812 |
@param blue the value for the blue gamma |
|
813 |
@param alpha the value for the alpha gamma |
|
814 |
</member> |
|
815 |
<member name="M:iTextSharp.text.BaseColor.#ctor(System.Int32,System.Int32,System.Int32)"> |
|
816 |
@param red |
|
817 |
@param green |
|
818 |
@param blue |
|
819 |
</member> |
|
820 |
<member name="M:iTextSharp.text.BaseColor.#ctor(System.Single,System.Single,System.Single,System.Single)"> |
|
821 |
Construct a BaseColor with float values. |
|
822 |
@param red |
|
823 |
@param green |
|
824 |
@param blue |
|
825 |
@param alpha |
|
826 |
</member> |
|
827 |
<member name="M:iTextSharp.text.BaseColor.#ctor(System.Single,System.Single,System.Single)"> |
|
828 |
Construct a BaseColor with float values. |
|
829 |
@param red |
|
830 |
@param green |
|
831 |
@param blue |
|
832 |
</member> |
|
833 |
<member name="M:iTextSharp.text.BaseColor.#ctor(System.Int32)"> |
|
834 |
Construct a BaseColor by setting the combined value. |
|
835 |
@param argb |
|
836 |
</member> |
|
837 |
<member name="M:iTextSharp.text.BaseColor.#ctor(System.Drawing.Color)"> |
|
838 |
Construct a BaseColor by System.Drawing.Color. |
|
839 |
@param color |
|
840 |
</member> |
|
841 |
<member name="M:iTextSharp.text.BaseColor.Brighter"> |
|
842 |
Make this BaseColor brighter. Factor used is 0.7. |
|
843 |
@return the new BaseColor |
|
844 |
</member> |
|
845 |
<member name="M:iTextSharp.text.BaseColor.Darker"> |
|
846 |
Make this color darker. Factor used is 0.7 |
|
847 |
@return the new BaseColor |
|
848 |
</member> |
|
849 |
<member name="P:iTextSharp.text.BaseColor.RGB"> |
|
850 |
@return the combined color value |
|
851 |
</member> |
|
852 |
<member name="P:iTextSharp.text.BaseColor.R"> |
|
853 |
|
|
854 |
@return the value for red |
|
855 |
</member> |
|
856 |
<member name="P:iTextSharp.text.BaseColor.G"> |
|
857 |
|
|
858 |
@return the value for green |
|
859 |
</member> |
|
860 |
<member name="P:iTextSharp.text.BaseColor.B"> |
|
861 |
|
|
862 |
@return the value for blue |
|
863 |
</member> |
|
864 |
<member name="P:iTextSharp.text.BaseColor.A"> |
|
865 |
|
|
866 |
@return the value for the alpha channel |
|
867 |
</member> |
|
868 |
<member name="T:iTextSharp.text.Chapter"> |
|
869 |
<summary> |
|
870 |
A Chapter is a special Section. |
|
871 |
</summary> |
|
872 |
<remarks> |
|
873 |
A chapter number has to be created using a Paragraph as title |
|
874 |
and an int as chapter number. The chapter number is shown be |
|
875 |
default. If you don't want to see the chapter number, you have to set the |
|
876 |
numberdepth to 0. |
|
877 |
</remarks> |
|
878 |
<example> |
|
879 |
<code> |
|
880 |
Paragraph title2 = new Paragraph("This is Chapter 2", FontFactory.GetFont(FontFactory.HELVETICA, 18, Font.BOLDITALIC, new BaseColor(0, 0, 255))); |
|
881 |
<strong>Chapter chapter2 = new Chapter(title2, 2); |
|
882 |
chapter2.SetNumberDepth(0);</strong> |
|
883 |
Paragraph someText = new Paragraph("This is some text"); |
|
884 |
<strong>chapter2.Add(someText);</strong> |
|
885 |
Paragraph title21 = new Paragraph("This is Section 1 in Chapter 2", FontFactory.GetFont(FontFactory.HELVETICA, 16, Font.BOLD, new BaseColor(255, 0, 0))); |
|
886 |
Section section1 = <strong>chapter2.AddSection(title21);</strong> |
|
887 |
Paragraph someSectionText = new Paragraph("This is some silly paragraph in a chapter and/or section. It contains some text to test the functionality of Chapters and Section."); |
|
888 |
section1.Add(someSectionText); |
|
889 |
</code> |
|
890 |
</example> |
|
891 |
</member> |
|
892 |
<member name="T:iTextSharp.text.Section"> |
|
893 |
<summary> |
|
894 |
A Section is a part of a Document containing |
|
895 |
other Sections, Paragraphs, List |
|
896 |
and/or Tables. |
|
897 |
</summary> |
|
898 |
<remarks> |
|
899 |
You can not construct a Section yourself. |
|
900 |
You will have to ask an instance of Section to the |
|
901 |
Chapter or Section to which you want to |
|
902 |
add the new Section. |
|
903 |
</remarks> |
|
904 |
<example> |
|
905 |
<code> |
|
906 |
Paragraph title2 = new Paragraph("This is Chapter 2", FontFactory.GetFont(FontFactory.HELVETICA, 18, Font.BOLDITALIC, new Color(0, 0, 255))); |
|
907 |
Chapter chapter2 = new Chapter(title2, 2); |
|
908 |
Paragraph someText = new Paragraph("This is some text"); |
|
909 |
chapter2.Add(someText); |
|
910 |
Paragraph title21 = new Paragraph("This is Section 1 in Chapter 2", FontFactory.GetFont(FontFactory.HELVETICA, 16, Font.BOLD, new Color(255, 0, 0))); |
|
911 |
<strong>Section section1 = chapter2.AddSection(title21);</strong> |
|
912 |
Paragraph someSectionText = new Paragraph("This is some silly paragraph in a chapter and/or section. It contains some text to test the functionality of Chapters and Section."); |
|
913 |
<strong>section1.Add(someSectionText);</strong> |
|
914 |
Paragraph title211 = new Paragraph("This is SubSection 1 in Section 1 in Chapter 2", FontFactory.GetFont(FontFactory.HELVETICA, 14, Font.BOLD, new Color(255, 0, 0))); |
|
915 |
<strong>Section section11 = section1.AddSection(40, title211, 2); |
|
916 |
section11.Add(someSectionText);</strong>strong> |
|
917 |
</code> |
|
918 |
</example> |
|
919 |
</member> |
|
920 |
<member name="T:iTextSharp.text.ILargeElement"> |
|
921 |
Interface implemented by Element objects that can potentially consume |
|
922 |
a lot of memory. Objects implementing the LargeElement interface can |
|
923 |
be added to a Document more than once. If you have invoked setCompleted(false), |
|
924 |
they will be added partially and the content that was added will be |
|
925 |
removed until you've invoked setCompleted(true); |
|
926 |
@since iText 2.0.8 |
|
927 |
</member> |
|
928 |
<member name="M:iTextSharp.text.ILargeElement.FlushContent"> |
|
929 |
Flushes the content that has been added. |
|
930 |
</member> |
|
931 |
<member name="P:iTextSharp.text.ILargeElement.ElementComplete"> |
|
932 |
If you invoke setCompleted(false), you indicate that the content |
|
933 |
of the object isn't complete yet; it can be added to the document |
|
934 |
partially, but more will follow. If you invoke setCompleted(true), |
|
935 |
you indicate that you won't add any more data to the object. |
|
936 |
@since iText 2.0.8 |
|
937 |
@param complete false if you'll be adding more data after |
|
938 |
adding the object to the document. |
|
939 |
</member> |
|
940 |
<member name="T:iTextSharp.text.api.IIndentable"> |
|
941 |
Objects implementing Indentable allow to set indentation left and right. |
|
942 |
</member> |
|
943 |
<member name="P:iTextSharp.text.api.IIndentable.IndentationLeft"> |
|
944 |
Sets the indentation on the left side. |
|
945 |
|
|
946 |
@param indentation the new indentation |
|
947 |
</member> |
|
948 |
<member name="P:iTextSharp.text.api.IIndentable.IndentationRight"> |
|
949 |
Sets the indentation on the right side. |
|
950 |
|
|
951 |
@param indentation the new indentation |
|
952 |
</member> |
|
953 |
<member name="M:iTextSharp.text.pdf.interfaces.IAccessibleElement.GetAccessibleAttribute(iTextSharp.text.pdf.PdfName)"> |
|
954 |
Get the attribute of accessible element (everything in <code>A</code> dictionary + <code>Lang</code>, <code>Alt</code>, <code>ActualText</code>, <code>E</code>). |
|
955 |
@param key |
|
956 |
@return |
|
957 |
</member> |
|
958 |
<member name="M:iTextSharp.text.pdf.interfaces.IAccessibleElement.SetAccessibleAttribute(iTextSharp.text.pdf.PdfName,iTextSharp.text.pdf.PdfObject)"> |
|
959 |
Set the attribute of accessible element (everything in <code>A</code> dictionary + <code>Lang</code>, <code>Alt</code>, <code>ActualText</code>, <code>E</code>). |
|
960 |
@param key |
|
961 |
@param value |
|
962 |
</member> |
|
963 |
<member name="M:iTextSharp.text.pdf.interfaces.IAccessibleElement.GetAccessibleAttributes"> |
|
964 |
Gets all the properties of accessible element. |
|
965 |
@return |
|
966 |
</member> |
|
967 |
<member name="P:iTextSharp.text.pdf.interfaces.IAccessibleElement.Role"> |
|
968 |
Role propherty of the accessible element. |
|
969 |
Note that all child elements won't also be tagged. |
|
970 |
@return |
|
971 |
</member> |
|
972 |
<member name="F:iTextSharp.text.Section.NUMBERSTYLE_DOTTED"> |
|
973 |
A possible number style. The default number style: "1.2.3." |
|
974 |
@since iText 2.0.8 |
|
975 |
</member> |
|
976 |
<member name="F:iTextSharp.text.Section.NUMBERSTYLE_DOTTED_WITHOUT_FINAL_DOT"> |
|
977 |
A possible number style. For instance: "1.2.3" |
|
978 |
@since iText 2.0.8 |
|
979 |
</member> |
|
980 |
<member name="F:iTextSharp.text.Section.title"> |
|
981 |
<summary> This is the title of this section. </summary> |
|
982 |
</member> |
|
983 |
<member name="F:iTextSharp.text.Section.numberDepth"> |
|
984 |
<summary> This is the number of sectionnumbers that has to be shown before the section title. </summary> |
|
985 |
</member> |
|
986 |
<member name="F:iTextSharp.text.Section.numberStyle"> |
|
987 |
The style for sectionnumbers. |
|
988 |
@since iText 2.0.8 |
|
989 |
</member> |
|
990 |
<member name="F:iTextSharp.text.Section.indentationLeft"> |
|
991 |
<summary> The indentation of this section on the left side. </summary> |
|
992 |
</member> |
|
993 |
<member name="F:iTextSharp.text.Section.indentationRight"> |
|
994 |
<summary> The indentation of this section on the right side. </summary> |
|
995 |
</member> |
|
996 |
<member name="F:iTextSharp.text.Section.indentation"> |
|
997 |
<summary> The additional indentation of the content of this section. </summary> |
|
998 |
</member> |
|
999 |
<member name="F:iTextSharp.text.Section.subsections"> |
|
1000 |
<summary> This is the number of subsections. </summary> |
|
1001 |
</member> |
|
1002 |
<member name="F:iTextSharp.text.Section.numbers"> |
|
1003 |
<summary> This is the complete list of sectionnumbers of this section and the parents of this section. </summary> |
|
1004 |
</member> |
|
1005 |
<member name="F:iTextSharp.text.Section.complete"> |
|
1006 |
Indicates if the Section will be complete once added to the document. |
|
1007 |
@since iText 2.0.8 |
|
1008 |
</member> |
|
1009 |
<member name="F:iTextSharp.text.Section.addedCompletely"> |
|
1010 |
Indicates if the Section was added completely to the document. |
|
1011 |
@since iText 2.0.8 |
|
1012 |
</member> |
|
1013 |
<member name="F:iTextSharp.text.Section.notAddedYet"> |
|
1014 |
Indicates if this is the first time the section was added. |
|
1015 |
@since iText 2.0.8 |
|
1016 |
</member> |
|
1017 |
<member name="F:iTextSharp.text.Section.bookmarkOpen"> |
|
1018 |
<summary> false if the bookmark children are not visible </summary> |
|
1019 |
</member> |
|
1020 |
<member name="F:iTextSharp.text.Section.triggerNewPage"> |
|
1021 |
true if the section has to trigger a new page |
|
1022 |
</member> |
|
1023 |
<member name="F:iTextSharp.text.Section.bookmarkTitle"> |
|
1024 |
The bookmark title if different from the content title |
|
1025 |
</member> |
|
1026 |
<member name="M:iTextSharp.text.Section.#ctor"> |
|
1027 |
<summary> |
|
1028 |
Constructs a new Section. |
|
1029 |
</summary> |
|
1030 |
<overloads> |
|
1031 |
Has 2 overloads. |
|
1032 |
</overloads> |
|
1033 |
</member> |
|
1034 |
<member name="M:iTextSharp.text.Section.#ctor(iTextSharp.text.Paragraph,System.Int32)"> |
|
1035 |
<summary> |
|
1036 |
Constructs a new Section. |
|
1037 |
</summary> |
|
1038 |
<param name="title">a Paragraph</param> |
|
1039 |
<param name="numberDepth">the numberDepth</param> |
|
1040 |
</member> |
|
1041 |
<member name="M:iTextSharp.text.Section.SetNumbers(System.Int32,System.Collections.Generic.List{System.Int32})"> |
|
1042 |
<summary> |
|
1043 |
Sets the number of this section. |
|
1044 |
</summary> |
|
1045 |
<param name="number">the number of this section</param> |
|
1046 |
<param name="numbers">an ArrayList, containing the numbers of the Parent</param> |
|
1047 |
</member> |
|
1048 |
<member name="M:iTextSharp.text.Section.Process(iTextSharp.text.IElementListener)"> |
|
1049 |
<summary> |
|
1050 |
Processes the element by adding it (or the different parts) to an |
|
1051 |
IElementListener. |
|
1052 |
</summary> |
|
1053 |
<param name="listener">the IElementListener</param> |
|
1054 |
<returns>true if the element was processed successfully</returns> |
|
1055 |
</member> |
|
1056 |
<member name="M:iTextSharp.text.Section.IsContent"> |
|
1057 |
@see com.lowagie.text.Element#isContent() |
|
1058 |
@since iText 2.0.8 |
|
1059 |
</member> |
|
1060 |
<member name="M:iTextSharp.text.Section.IsNestable"> |
|
1061 |
@see com.lowagie.text.Element#isNestable() |
|
1062 |
@since iText 2.0.8 |
|
1063 |
</member> |
|
1064 |
<member name="M:iTextSharp.text.Section.Add(System.Int32,iTextSharp.text.IElement)"> |
|
1065 |
<summary> |
|
1066 |
Adds a Paragraph, List or Table |
|
1067 |
to this Section. |
|
1068 |
</summary> |
|
1069 |
<param name="index">index at which the specified element is to be inserted</param> |
|
1070 |
<param name="o">an object of type Paragraph, List or Table</param> |
|
1071 |
</member> |
|
1072 |
<member name="M:iTextSharp.text.Section.Add(iTextSharp.text.IElement)"> |
|
1073 |
<summary> |
|
1074 |
Adds a Paragraph, List, Table or another Section |
|
1075 |
to this Section. |
|
1076 |
</summary> |
|
1077 |
<param name="o">an object of type Paragraph, List, Table or another Section</param> |
|
1078 |
<returns>a bool</returns> |
|
1079 |
</member> |
|
1080 |
<member name="M:iTextSharp.text.Section.AddAll``1(System.Collections.Generic.ICollection{``0})"> |
|
1081 |
<summary> |
|
1082 |
Adds a collection of Elements |
|
1083 |
to this Section. |
|
1084 |
</summary> |
|
1085 |
<param name="collection">a collection of Paragraphs, Lists and/or Tables</param> |
|
1086 |
<returns>true if the action succeeded, false if not.</returns> |
|
1087 |
</member> |
|
1088 |
<member name="M:iTextSharp.text.Section.AddSection(System.Single,iTextSharp.text.Paragraph,System.Int32)"> |
|
1089 |
<summary> |
|
1090 |
Creates a Section, adds it to this Section and returns it. |
|
1091 |
</summary> |
|
1092 |
<param name="indentation">the indentation of the new section</param> |
|
1093 |
<param name="title">the title of the new section</param> |
|
1094 |
<param name="numberDepth">the numberDepth of the section</param> |
|
1095 |
<returns>the newly added Section</returns> |
|
1096 |
</member> |
|
1097 |
<member name="M:iTextSharp.text.Section.AddSection(System.Single,iTextSharp.text.Paragraph)"> |
|
1098 |
<summary> |
|
1099 |
Creates a Section, adds it to this Section and returns it. |
|
1100 |
</summary> |
|
1101 |
<param name="indentation">the indentation of the new section</param> |
|
1102 |
<param name="title">the title of the new section</param> |
|
1103 |
<returns>the newly added Section</returns> |
|
1104 |
</member> |
|
1105 |
<member name="M:iTextSharp.text.Section.AddSection(iTextSharp.text.Paragraph,System.Int32)"> |
|
1106 |
<summary> |
|
1107 |
Creates a Section, add it to this Section and returns it. |
|
1108 |
</summary> |
|
1109 |
<param name="title">the title of the new section</param> |
|
1110 |
<param name="numberDepth">the numberDepth of the section</param> |
|
1111 |
<returns>the newly added Section</returns> |
|
1112 |
</member> |
|
1113 |
<member name="M:iTextSharp.text.Section.AddMarkedSection"> |
|
1114 |
Adds a marked section. For use in class MarkedSection only! |
|
1115 |
</member> |
|
1116 |
<member name="M:iTextSharp.text.Section.AddSection(iTextSharp.text.Paragraph)"> |
|
1117 |
<summary> |
|
1118 |
Creates a Section, adds it to this Section and returns it. |
|
1119 |
</summary> |
|
1120 |
<param name="title">the title of the new section</param> |
|
1121 |
<returns>the newly added Section</returns> |
|
1122 |
</member> |
|
1123 |
<member name="M:iTextSharp.text.Section.AddSection(System.Single,System.String,System.Int32)"> |
|
1124 |
Adds a Section to this Section and returns it. |
|
1125 |
|
|
1126 |
@param indentation the indentation of the new section |
|
1127 |
@param title the title of the new section |
|
1128 |
@param numberDepth the numberDepth of the section |
|
1129 |
<summary> |
|
1130 |
Adds a Section to this Section and returns it. |
|
1131 |
</summary> |
|
1132 |
<param name="indentation">the indentation of the new section</param> |
|
1133 |
<param name="title">the title of the new section</param> |
|
1134 |
<param name="numberDepth">the numberDepth of the section</param> |
|
1135 |
<returns>the newly added Section</returns> |
|
1136 |
</member> |
|
1137 |
<member name="M:iTextSharp.text.Section.AddSection(System.String,System.Int32)"> |
|
1138 |
Adds a Section to this Section and returns it. |
|
1139 |
|
|
1140 |
@param title the title of the new section |
|
1141 |
@param numberDepth the numberDepth of the section |
|
1142 |
<summary> |
|
1143 |
Adds a Section to this Section and returns it. |
|
1144 |
</summary> |
|
1145 |
<param name="title">the title of the new section</param> |
|
1146 |
<param name="numberDepth">the numberDepth of the section</param> |
|
1147 |
<returns>the newly added Section</returns> |
|
1148 |
</member> |
|
1149 |
<member name="M:iTextSharp.text.Section.AddSection(System.Single,System.String)"> |
|
1150 |
<summary> |
|
1151 |
Adds a Section to this Section and returns it. |
|
1152 |
</summary> |
|
1153 |
<param name="indentation">the indentation of the new section</param> |
|
1154 |
<param name="title">the title of the new section</param> |
|
1155 |
<returns>the newly added Section</returns> |
|
1156 |
</member> |
|
1157 |
<member name="M:iTextSharp.text.Section.AddSection(System.String)"> |
|
1158 |
<summary> |
|
1159 |
Adds a Section to this Section and returns it. |
|
1160 |
</summary> |
|
1161 |
<param name="title">the title of the new section</param> |
|
1162 |
<returns>the newly added Section</returns> |
|
1163 |
</member> |
|
1164 |
<member name="M:iTextSharp.text.Section.ConstructTitle(iTextSharp.text.Paragraph,System.Collections.Generic.List{System.Int32},System.Int32,System.Int32)"> |
|
1165 |
Constructs a Paragraph that will be used as title for a Section or Chapter. |
|
1166 |
@param title the title of the section |
|
1167 |
@param numbers a list of sectionnumbers |
|
1168 |
@param numberDepth how many numbers have to be shown |
|
1169 |
@param numberStyle the numbering style |
|
1170 |
@return a Paragraph object |
|
1171 |
@since iText 2.0.8 |
|
1172 |
</member> |
|
1173 |
<member name="M:iTextSharp.text.Section.IsChapter"> |
|
1174 |
<summary> |
|
1175 |
Checks if this object is a Chapter. |
|
1176 |
</summary> |
|
1177 |
<returns> |
|
1178 |
true if it is a Chapter, |
|
1179 |
false if it is a Section |
|
1180 |
</returns> |
|
1181 |
</member> |
|
1182 |
<member name="M:iTextSharp.text.Section.IsSection"> |
|
1183 |
<summary> |
|
1184 |
Checks if this object is a Section. |
|
1185 |
</summary> |
|
1186 |
<returns> |
|
1187 |
true if it is a Section, |
|
1188 |
false if it is a Chapter. |
|
1189 |
</returns> |
|
1190 |
</member> |
|
1191 |
<member name="M:iTextSharp.text.Section.GetBookmarkTitle"> |
|
1192 |
Gets the bookmark title. |
|
1193 |
@return the bookmark title |
|
1194 |
</member> |
|
1195 |
<member name="M:iTextSharp.text.Section.SetChapterNumber(System.Int32)"> |
|
1196 |
Changes the Chapter number. |
|
1197 |
</member> |
|
1198 |
<member name="M:iTextSharp.text.Section.FlushContent"> |
|
1199 |
@since iText 2.0.8 |
|
1200 |
@see com.lowagie.text.LargeElement#flushContent() |
|
1201 |
</member> |
|
1202 |
<member name="M:iTextSharp.text.Section.NewPage"> |
|
1203 |
Adds a new page to the section. |
|
1204 |
@since 2.1.1 |
|
1205 |
</member> |
|
1206 |
<member name="P:iTextSharp.text.Section.Type"> |
|
1207 |
<summary> |
|
1208 |
Gets the type of the text element. |
|
1209 |
</summary> |
|
1210 |
<value>a type</value> |
|
1211 |
</member> |
|
1212 |
<member name="P:iTextSharp.text.Section.Chunks"> |
|
1213 |
<summary> |
|
1214 |
Gets all the chunks in this element. |
|
1215 |
</summary> |
|
1216 |
<value>an ArrayList</value> |
|
1217 |
</member> |
|
1218 |
<member name="P:iTextSharp.text.Section.Title"> |
|
1219 |
<summary> |
|
1220 |
Get/set the title of this section |
|
1221 |
</summary> |
|
1222 |
<value>a Paragraph</value> |
|
1223 |
</member> |
|
1224 |
<member name="P:iTextSharp.text.Section.NumberStyle"> |
|
1225 |
Sets the style for numbering sections. |
|
1226 |
Possible values are NUMBERSTYLE_DOTTED: 1.2.3. (the default) |
|
1227 |
or NUMBERSTYLE_DOTTED_WITHOUT_FINAL_DOT: 1.2.3 |
|
1228 |
@since iText 2.0.8 |
|
1229 |
</member> |
|
1230 |
<member name="P:iTextSharp.text.Section.NumberDepth"> |
|
1231 |
<summary> |
|
1232 |
Get/set the numberdepth of this Section. |
|
1233 |
</summary> |
|
1234 |
<value>a int</value> |
|
1235 |
</member> |
|
1236 |
<member name="P:iTextSharp.text.Section.IndentationLeft"> |
|
1237 |
<summary> |
|
1238 |
Get/set the indentation of this Section on the left side. |
|
1239 |
</summary> |
|
1240 |
<value>the indentation</value> |
|
1241 |
</member> |
|
1242 |
<member name="P:iTextSharp.text.Section.IndentationRight"> |
|
1243 |
<summary> |
|
1244 |
Get/set the indentation of this Section on the right side. |
|
1245 |
</summary> |
|
1246 |
<value>the indentation</value> |
|
1247 |
</member> |
|
1248 |
<member name="P:iTextSharp.text.Section.Indentation"> |
|
1249 |
<summary> |
|
1250 |
Get/set the indentation of the content of this Section. |
|
1251 |
</summary> |
|
1252 |
<value>the indentation</value> |
|
1253 |
</member> |
|
1254 |
<member name="P:iTextSharp.text.Section.Depth"> |
|
1255 |
<summary> |
|
1256 |
Returns the depth of this section. |
|
1257 |
</summary> |
|
1258 |
<value>the depth</value> |
|
1259 |
</member> |
|
1260 |
<member name="P:iTextSharp.text.Section.BookmarkOpen"> |
|
1261 |
<summary> |
|
1262 |
Get/set the bookmark |
|
1263 |
</summary> |
|
1264 |
<value>a bool</value> |
|
1265 |
</member> |
|
1266 |
<member name="P:iTextSharp.text.Section.BookmarkTitle"> |
|
1267 |
Sets the bookmark title. The bookmark title is the same as the section title but |
|
1268 |
can be changed with this method. |
|
1269 |
@param bookmarkTitle the bookmark title |
|
1270 |
</member> |
|
1271 |
<member name="P:iTextSharp.text.Section.NotAddedYet"> |
|
1272 |
Indicates if this is the first time the section is added. |
|
1273 |
@since iText2.0.8 |
|
1274 |
@return true if the section wasn't added yet |
|
1275 |
</member> |
|
1276 |
<member name="P:iTextSharp.text.Section.AddedCompletely"> |
|
1277 |
@see com.lowagie.text.LargeElement#isAddedCompletely() |
|
1278 |
@since iText 2.0.8 |
|
1279 |
</member> |
|
1280 |
<member name="P:iTextSharp.text.Section.ElementComplete"> |
|
1281 |
@since iText 2.0.8 |
|
1282 |
@see com.lowagie.text.LargeElement#isComplete() |
|
1283 |
</member> |
|
1284 |
<member name="M:iTextSharp.text.Chapter.#ctor(System.Int32)"> |
|
1285 |
Constructs a new <CODE>Chapter</CODE>. |
|
1286 |
@param number the Chapter number |
|
1287 |
</member> |
|
1288 |
<member name="M:iTextSharp.text.Chapter.#ctor(iTextSharp.text.Paragraph,System.Int32)"> |
|
1289 |
<summary> |
|
1290 |
Constructs a new Chapter. |
|
1291 |
</summary> |
|
1292 |
<param name="title">the Chapter title (as a Paragraph)</param> |
|
1293 |
<param name="number">the Chapter number</param> |
|
1294 |
<overoads> |
|
1295 |
Has three overloads. |
|
1296 |
</overoads> |
|
1297 |
</member> |
|
1298 |
<member name="M:iTextSharp.text.Chapter.#ctor(System.String,System.Int32)"> |
|
1299 |
<summary> |
|
1300 |
Constructs a new Chapter. |
|
1301 |
</summary> |
|
1302 |
<param name="title">the Chapter title (as a string)</param> |
|
1303 |
<param name="number">the Chapter number</param> |
|
1304 |
<overoads> |
|
1305 |
Has three overloads. |
|
1306 |
</overoads> |
|
1307 |
</member> |
|
1308 |
<member name="M:iTextSharp.text.Chapter.IsNestable"> |
|
1309 |
@see com.lowagie.text.Element#isNestable() |
|
1310 |
@since iText 2.0.8 |
|
1311 |
</member> |
|
1312 |
<member name="P:iTextSharp.text.Chapter.Type"> |
|
1313 |
<summary> |
|
1314 |
Gets the type of the text element. |
|
1315 |
</summary> |
|
1316 |
<value>a type</value> |
|
1317 |
</member> |
|
1318 |
<member name="T:iTextSharp.text.ChapterAutoNumber"> |
|
1319 |
Chapter with auto numbering. |
|
1320 |
|
|
1321 |
@author Michael Niedermair |
|
1322 |
</member> |
|
1323 |
<member name="F:iTextSharp.text.ChapterAutoNumber.numberSet"> |
|
1324 |
Is the chapter number already set? |
|
1325 |
@since 2.1.4 |
|
1326 |
</member> |
|
1327 |
<member name="M:iTextSharp.text.ChapterAutoNumber.#ctor(iTextSharp.text.Paragraph)"> |
|
1328 |
Create a new object. |
|
1329 |
|
|
1330 |
@param para the Chapter title (as a <CODE>Paragraph</CODE>) |
|
1331 |
</member> |
|
1332 |
<member name="M:iTextSharp.text.ChapterAutoNumber.#ctor(System.String)"> |
|
1333 |
Create a new objet. |
|
1334 |
|
|
1335 |
@param title the Chapter title (as a <CODE>String</CODE>) |
|
1336 |
</member> |
|
1337 |
<member name="M:iTextSharp.text.ChapterAutoNumber.AddSection(System.String)"> |
|
1338 |
Create a new section for this chapter and ad it. |
|
1339 |
|
|
1340 |
@param title the Section title (as a <CODE>String</CODE>) |
|
1341 |
@return Returns the new section. |
|
1342 |
</member> |
|
1343 |
<member name="M:iTextSharp.text.ChapterAutoNumber.AddSection(iTextSharp.text.Paragraph)"> |
|
1344 |
Create a new section for this chapter and add it. |
|
1345 |
|
|
1346 |
@param title the Section title (as a <CODE>Paragraph</CODE>) |
|
1347 |
@return Returns the new section. |
|
1348 |
</member> |
|
1349 |
<member name="M:iTextSharp.text.ChapterAutoNumber.SetAutomaticNumber(System.Int32)"> |
|
1350 |
Changes the Chapter number. |
|
1351 |
@param number the new chapter number |
|
1352 |
@since 2.1.4 |
|
1353 |
</member> |
|
1354 |
<member name="T:iTextSharp.text.Chunk"> |
|
1355 |
<summary> |
|
1356 |
This is the smallest significant part of text that can be added to a document. |
|
1357 |
</summary> |
|
1358 |
<remarks> |
|
1359 |
Most elements can be divided in one or more Chunks. |
|
1360 |
A chunk is a string with a certain Font. |
|
1361 |
all other layoutparameters should be defined in the object to which |
|
1362 |
this chunk of text is added. |
|
1363 |
</remarks> |
|
1364 |
<example> |
|
1365 |
<code> |
|
1366 |
<strong>Chunk chunk = new Chunk("Hello world", FontFactory.GetFont(FontFactory.COURIER, 20, Font.ITALIC, new BaseColor(255, 0, 0)));</strong> |
|
1367 |
document.Add(chunk); |
|
1368 |
</code> |
|
1369 |
</example> |
|
1370 |
</member> |
|
1371 |
<member name="F:iTextSharp.text.Chunk.OBJECT_REPLACEMENT_CHARACTER"> |
|
1372 |
The character stand in for an image or a separator. |
|
1373 |
</member> |
|
1374 |
<member name="F:iTextSharp.text.Chunk.SEPARATOR"> |
|
1375 |
Key for drawInterface of the Separator. |
|
1376 |
@since 2.1.2 |
|
1377 |
</member> |
|
1378 |
<member name="F:iTextSharp.text.Chunk.TAB"> |
|
1379 |
Key for drawInterface of the tab. |
|
1380 |
@since 2.1.2 |
|
1381 |
</member> |
|
1382 |
<member name="F:iTextSharp.text.Chunk.TABSETTINGS"> |
|
1383 |
Key for tab stops of the tab. |
|
1384 |
@since 5.4.1 |
|
1385 |
</member> |
|
1386 |
<member name="F:iTextSharp.text.Chunk.HSCALE"> |
|
1387 |
Key for text horizontal scaling. |
|
1388 |
</member> |
|
1389 |
<member name="F:iTextSharp.text.Chunk.UNDERLINE"> |
|
1390 |
<summary> Key for underline. </summary> |
|
1391 |
</member> |
|
1392 |
<member name="F:iTextSharp.text.Chunk.SUBSUPSCRIPT"> |
|
1393 |
<summary> Key for sub/basescript. </summary> |
|
1394 |
</member> |
|
1395 |
<member name="F:iTextSharp.text.Chunk.SKEW"> |
|
1396 |
<summary> Key for text skewing. </summary> |
|
1397 |
</member> |
|
1398 |
<member name="F:iTextSharp.text.Chunk.BACKGROUND"> |
|
1399 |
<summary> Key for background. </summary> |
|
1400 |
</member> |
|
1401 |
<member name="F:iTextSharp.text.Chunk.TEXTRENDERMODE"> |
|
1402 |
<summary> Key for text rendering mode.</summary> |
|
1403 |
</member> |
|
1404 |
<member name="F:iTextSharp.text.Chunk.SPLITCHARACTER"> |
|
1405 |
<summary> Key for split character. </summary> |
|
1406 |
</member> |
|
1407 |
<member name="F:iTextSharp.text.Chunk.HYPHENATION"> |
|
1408 |
<summary> Key for hyphenation. </summary> |
|
1409 |
</member> |
|
1410 |
<member name="F:iTextSharp.text.Chunk.REMOTEGOTO"> |
|
1411 |
<summary> Key for remote goto. </summary> |
|
1412 |
</member> |
|
1413 |
<member name="F:iTextSharp.text.Chunk.LOCALGOTO"> |
|
1414 |
<summary> Key for local goto. </summary> |
|
1415 |
</member> |
|
1416 |
<member name="F:iTextSharp.text.Chunk.LOCALDESTINATION"> |
|
1417 |
<summary> Key for local destination. </summary> |
|
1418 |
</member> |
|
1419 |
<member name="F:iTextSharp.text.Chunk.GENERICTAG"> |
|
1420 |
<summary> Key for generic tag. </summary> |
|
1421 |
</member> |
|
1422 |
<member name="F:iTextSharp.text.Chunk.LINEHEIGHT"> |
|
1423 |
Key for line-height (alternative for leading in Phrase). |
|
1424 |
</member> |
|
1425 |
<member name="F:iTextSharp.text.Chunk.IMAGE"> |
|
1426 |
<summary> Key for image. </summary> |
|
1427 |
</member> |
|
1428 |
<member name="F:iTextSharp.text.Chunk.ACTION"> |
|
1429 |
<summary> Key for Action. </summary> |
|
1430 |
</member> |
|
1431 |
<member name="F:iTextSharp.text.Chunk.NEWPAGE"> |
|
1432 |
<summary> Key for newpage. </summary> |
|
1433 |
</member> |
|
1434 |
<member name="F:iTextSharp.text.Chunk.PDFANNOTATION"> |
|
1435 |
<summary> Key for annotation. </summary> |
|
1436 |
</member> |
|
1437 |
<member name="F:iTextSharp.text.Chunk.COLOR"> |
|
1438 |
<summary> Key for color. </summary> |
|
1439 |
</member> |
|
1440 |
<member name="F:iTextSharp.text.Chunk.ENCODING"> |
|
1441 |
<summary> Key for encoding. </summary> |
|
1442 |
</member> |
|
1443 |
<member name="F:iTextSharp.text.Chunk.CHAR_SPACING"> |
|
1444 |
Key for character spacing. |
|
1445 |
</member> |
|
1446 |
<member name="F:iTextSharp.text.Chunk.WORD_SPACING"> |
|
1447 |
Key for word spacing. |
|
1448 |
</member> |
|
1449 |
<member name="F:iTextSharp.text.Chunk.NEWLINE"> |
|
1450 |
<summary> This is a Chunk containing a newline. </summary> |
|
1451 |
</member> |
|
1452 |
<member name="F:iTextSharp.text.Chunk.NEXTPAGE"> |
|
1453 |
This is a Chunk containing a newpage. |
|
1454 |
</member> |
|
1455 |
<member name="F:iTextSharp.text.Chunk.content"> |
|
1456 |
<summary> This is the content of this chunk of text. </summary> |
|
1457 |
</member> |
|
1458 |
<member name="F:iTextSharp.text.Chunk.font"> |
|
1459 |
<summary> This is the Font of this chunk of text. </summary> |
|
1460 |
</member> |
|
1461 |
<member name="F:iTextSharp.text.Chunk.attributes"> |
|
1462 |
<summary> Contains some of the attributes for this Chunk. </summary> |
|
1463 |
</member> |
|
1464 |
<member name="M:iTextSharp.text.Chunk.#ctor"> |
|
1465 |
<summary> |
|
1466 |
Empty constructor. |
|
1467 |
</summary> |
|
1468 |
<overloads> |
|
1469 |
Has six overloads. |
|
1470 |
</overloads> |
|
1471 |
</member> |
|
1472 |
<member name="M:iTextSharp.text.Chunk.#ctor(iTextSharp.text.Chunk)"> |
|
1473 |
A <CODE>Chunk</CODE> copy constructor. |
|
1474 |
@param ck the <CODE>Chunk</CODE> to be copied |
|
1475 |
</member> |
|
1476 |
<member name="M:iTextSharp.text.Chunk.#ctor(System.String,iTextSharp.text.Font)"> |
|
1477 |
<summary> |
|
1478 |
Constructs a chunk of text with a certain content and a certain Font. |
|
1479 |
</summary> |
|
1480 |
<param name="content">the content</param> |
|
1481 |
<param name="font">the font</param> |
|
1482 |
</member> |
|
1483 |
<member name="M:iTextSharp.text.Chunk.#ctor(System.String)"> |
내보내기 Unified diff