|
HiraokaHyperTools.iTextSharp-LGPL
0.3.0
|
The More...
Public Member Functions | |
| ITextmyHandler (IDocListener document, Hashtable myTags) | |
| Constructs a new iTextHandler that will translate all the events triggered by the parser to actions on the More... | |
| override void | StartElement (String uri, String lname, String name, Hashtable attrs) |
| This method gets called when a start tag is encountered. More... | |
| override void | EndElement (String uri, String lname, String name) |
| This method gets called when an end tag is encountered. More... | |
Public Member Functions inherited from iTextSharp.text.xml.ITextHandler | |
| ITextHandler (IDocListener document) | |
| Constructs a new iTextHandler that will translate all the events triggered by the parser to actions on the More... | |
| ITextHandler (IDocListener document, HtmlTagMap myTags) | |
| ITextHandler (IDocListener document, HtmlTagMap myTags, BaseFont bf) | |
| ITextHandler (IDocListener document, Hashtable myTags) | |
| void | SetControlOpenClose (bool controlOpenClose) |
| Sets the parameter that allows you to enable/disable the control over the Document.Open() and Document.Close() method. More... | |
| void | HandleStartingTags (String name, Properties attributes) |
| This method deals with the starting tags. More... | |
| void | IgnorableWhitespace (char[] ch, int start, int length) |
| This method gets called when ignorable white space encountered. More... | |
| override void | Characters (string content, int start, int length) |
| This method gets called when characters are encountered. More... | |
| void | HandleEndingTags (String name) |
| This method deals with the starting tags. More... | |
Public Member Functions inherited from iTextSharp.text.xml.ParserBase | |
| void | Parse (XmlDocument xDoc) |
| void | Parse (XmlTextReader reader) |
| void | Parse (string url) |
| Begins the process of processing an XML document More... | |
Additional Inherited Members | |
Protected Member Functions inherited from iTextSharp.text.xml.ITextHandler | |
| bool | IsDocumentRoot (String tag) |
| Checks if a certain tag corresponds with the roottag. More... | |
Protected Attributes inherited from iTextSharp.text.xml.ITextHandler | |
| IDocListener | document |
| This is the resulting document. More... | |
| Stack | stack |
| This is a More... | |
| int | chapters = 0 |
| Counts the number of chapters in this document. More... | |
| Chunk | currentChunk = null |
| This is the current chunk to which characters can be added. More... | |
| bool | ignore = false |
| This is the current chunk to which characters can be added. More... | |
| bool | controlOpenClose = true |
| This is a flag that can be set, if you want to open and close the Document-object yourself. More... | |
| Hashtable | myTags |
Properties inherited from iTextSharp.text.xml.ITextHandler | |
| BaseFont | DefaultFont [get, set] |
The
iTextmyHandler-class maps several XHTML-tags to iText-objects.
| iTextSharp.text.xml.ITextmyHandler.ITextmyHandler | ( | IDocListener | document, |
| Hashtable | myTags | ||
| ) |
Constructs a new iTextHandler that will translate all the events triggered by the parser to actions on the
Document-object.
| document | this is the document on which events must be triggered |
| myTags | a map of tags |
|
virtual |
This method gets called when an end tag is encountered.
| uri | |
| lname | |
| name | the name of the tag that ends |
Reimplemented from iTextSharp.text.xml.ITextHandler.
|
virtual |
This method gets called when a start tag is encountered.
| uri | |
| lname | |
| name | the name of the tag that is encountered |
| attrs | the list of attributes |
Reimplemented from iTextSharp.text.xml.ITextHandler.