Table Of Contents

Previous topic

QXmlDefaultHandler

Next topic

QXmlReader

QXmlLocator

Detailed Description

The PySide.QtXml.QXmlLocator class provides the XML handler classes with information about the parsing position within a file.

The reader reports a PySide.QtXml.QXmlLocator to the content handler before it starts to parse the document. This is done with the QXmlContentHandler.setDocumentLocator() function. The handler classes can now use this locator to get the position ( PySide.QtXml.QXmlLocator.lineNumber() and PySide.QtXml.QXmlLocator.columnNumber() ) that the reader has reached.

class PySide.QtXml.QXmlLocator

Constructor.

PySide.QtXml.QXmlLocator.columnNumber()
Return type:PySide.QtCore.int

Returns the column number (starting at 1) or -1 if there is no column number available.

PySide.QtXml.QXmlLocator.lineNumber()
Return type:PySide.QtCore.int

Returns the line number (starting at 1) or -1 if there is no line number available.