QXmlStreamAttributes¶
- PyQt5.QtCore.QXmlStreamAttributes
Description¶
The QXmlStreamAttributes class represents a vector of QXmlStreamAttribute.
Attributes are returned by a QXmlStreamReader in attributes() when the reader reports a StartElement. The class can also be used with a QXmlStreamWriter as an argument to writeAttributes().
The convenience function value() loops over the vector and returns an attribute value for a given namespaceUri and an attribute’s name.
New attributes can be added with append().
Methods¶
- __init__()
TODO
- __init__(QXmlStreamAttributes)
TODO
- append(QXmlStreamAttribute)
TODO
- append(str, str)
This is an overloaded function.
Appends a new attribute with qualified name qualifiedName and value value.
- append(str, str, str)
Appends a new attribute with name in the namespace described with namespaceUri, and value value. The namespaceUri can be empty.
- at(int) → QXmlStreamAttribute
TODO
- clear()
TODO
- __contains__(QXmlStreamAttribute) → int
TODO
- contains(QXmlStreamAttribute) → bool
TODO
- count() → int
TODO
- count(QXmlStreamAttribute) → int
TODO
- data() → sip.voidptr
TODO
- __delitem__(int)
TODO
- __delitem__(slice)
TODO
- __eq__(QXmlStreamAttributes) → bool
TODO
- fill(QXmlStreamAttribute, size: int = -1)
TODO
- first() → QXmlStreamAttribute
TODO
- __getitem__(int) → QXmlStreamAttribute
TODO
- __getitem__(slice) → QXmlStreamAttributes
TODO
- hasAttribute(str) → bool
TODO
- hasAttribute(str, str) → bool
TODO
- __iadd__(QXmlStreamAttributes) → QXmlStreamAttributes
TODO
- __iadd__(QXmlStreamAttribute) → QXmlStreamAttributes
TODO
- indexOf(QXmlStreamAttribute, from: int = 0) → int
TODO
- insert(int, QXmlStreamAttribute)
TODO
- isEmpty() → bool
TODO
- last() → QXmlStreamAttribute
TODO
- lastIndexOf(QXmlStreamAttribute, from: int = -1) → int
TODO
- __len__() → int
TODO
- __ne__(QXmlStreamAttributes) → bool
TODO
- prepend(QXmlStreamAttribute)
TODO
- remove(int)
TODO
- remove(int, int)
TODO
- replace(int, QXmlStreamAttribute)
TODO
- __setitem__(int, QXmlStreamAttribute)
TODO
- __setitem__(slice, QXmlStreamAttributes)
TODO
- size() → int
TODO
- value(str) → str
This is an overloaded function.
Returns the value of the attribute with qualified name qualifiedName , or an empty string reference if the attribute is not defined. A qualified name is the raw name of an attribute in the XML data. It consists of the namespace prefix, followed by colon, followed by the attribute’s local name. Since the namespace prefix is not unique (the same prefix can point to different namespaces and different prefixes can point to the same namespace), you shouldn’t use qualified names, but a resolved namespaceUri and the attribute’s local name.
- value(str, str) → str
Returns the value of the attribute name in the namespace described with namespaceUri, or an empty string reference if the attribute is not defined. The namespaceUri can be empty.