QXmlStreamAttribute

PyQt5.QtCore.QXmlStreamAttribute

Description

The QXmlStreamAttribute class represents a single XML attribute.

An attribute consists of an optionally empty namespaceUri(), a name(), a value(), and an isDefault() attribute.

The raw XML attribute name is returned as qualifiedName().

Methods

__init__()

Creates an empty attribute.


__init__(QXmlStreamAttribute)

Creates a copy of other.


__init__(str, str)

Constructs an attribute with qualified name qualifiedName and value value.


__init__(str, str, str)

Constructs an attribute in the namespace described with namespaceUri with name and value value.


__eq__(QXmlStreamAttribute) → bool

TODO


isDefault() → bool

TODO


name() → str

TODO


namespaceUri() → str

TODO


__ne__(QXmlStreamAttribute) → bool

TODO


prefix() → str

TODO


qualifiedName() → str

TODO


value() → str

TODO