内容表

上一话题

QXmlLexicalHandler

下一话题

QXmlNamespaceSupport

QXmlLocator

QXmlLocator class provides the XML handler classes with information about the parsing position within a file. 更多

Inheritance diagram of PySide2.QtXml.QXmlLocator

详细描述

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

class QXmlLocator

构造函数。

PySide2.QtXml.QXmlLocator. columnNumber ( )
返回类型

int

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

PySide2.QtXml.QXmlLocator. lineNumber ( )
返回类型

int

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