QXmlLexicalHandler露
- PyQt5.QtXml.QXmlLexicalHandler
Inherited by QXmlDefaultHandler.
Description露
The QXmlLexicalHandler class provides an interface to report the lexical content of XML data.
The events in the lexical handler apply to the entire document, not just to the document element, and all lexical handler events appear between the content handler鈥檚 startDocument and endDocument events.
You can set the lexical handler with setLexicalHandler().
This interface鈥檚 design is based on the SAX2 extension LexicalHandler.
The interface provides the startDTD(), endDTD(), startEntity(), endEntity(), startCDATA(), endCDATA() and comment() functions.
Methods露
- __init__()
TODO
- __init__(QXmlLexicalHandler)
TODO
- comment(str) → bool
TODO
- endCDATA() → bool
TODO
- endDTD() → bool
TODO
- endEntity(str) → bool
TODO
- errorString() → str
TODO
- startCDATA() → bool
TODO
- startDTD(str, str, str) → bool
TODO
- startEntity(str) → bool
TODO