|
HiraokaHyperTools.iTextSharp-LGPL
0.3.0
|
Public Member Functions | |
| void | FlushContent () |
Public Member Functions inherited from iTextSharp.text.IElement | |
| bool | Process (IElementListener listener) |
| Processes the element by adding it (or the different parts) to an IElementListener. More... | |
| bool | IsContent () |
| bool | IsNestable () |
| string | ToString () |
| Gets the content of the text element. More... | |
Properties | |
| bool | ElementComplete [get, set] |
Properties inherited from iTextSharp.text.IElement | |
| int | Type [get] |
| Gets the type of the text element. More... | |
| ArrayList | Chunks [get] |
| Gets all the chunks in this element. More... | |
Interface implemented by Element objects that can potentially consume a lot of memory. Objects implementing the LargeElement interface can be added to a Document more than once. If you have invoked setCompleted(false), they will be added partially and the content that was added will be removed until you've invoked setCompleted(true);
| void iTextSharp.text.ILargeElement.FlushContent | ( | ) |
Flushes the content that has been added.
Implemented in iTextSharp.text.Table, iTextSharp.text.Section, and iTextSharp.text.pdf.PdfPTable.
|
getset |
If you invoke setCompleted(false), you indicate that the content of the object isn't complete yet; it can be added to the document partially, but more will follow. If you invoke setCompleted(true), you indicate that you won't add any more data to the object.
| complete | false if you'll be adding more data after adding the object to the document. |