QXmlAttributes露
The
QXmlAttributesclass provides XML attributes. More鈥

Synopsis露
Functions露
def
append(qName, uri, localPart, value)def
clear()def
count()def
index(qName)def
index(uri, localPart)def
length()def
localName(index)def
qName(index)def
swap(other)def
type(index)def
type(qName)def
type(uri, localName)def
uri(index)def
value(index)def
value(qName)def
value(uri, localName)
Detailed Description露
If attributes are reported by
startElement()this class is used to pass the attribute values.Use
index()to locate the position of an attribute in the list,count()to retrieve the number of attributes, andclear()to remove the attributes. New attributes can be added withappend(). Usetype()to get an attribute鈥檚 type andvalue()to get its value. The attribute鈥檚 name is available fromlocalName()orqName(), and its namespace URI fromuri().
- class PySide2.QtXml.QXmlAttributes露
Note
This constructor is deprecated.
PySide2.QtXml.QXmlAttributes(arg__1)
- param arg__1:
Constructs an empty attribute list.
- PySide2.QtXml.QXmlAttributes.append(qName, uri, localPart, value)露
- Parameters:
qName 鈥 str
uri 鈥 str
localPart 鈥 str
value 鈥 str
Appends a new attribute entry to the list of attributes. The qualified name of the attribute is
qName, the namespace URI isuriand the local name islocalPart. The value of the attribute isvalue.See also
- PySide2.QtXml.QXmlAttributes.count()露
- Return type:
int
Returns the number of attributes in the list. This function is equivalent to
length().
- PySide2.QtXml.QXmlAttributes.index(qName)露
- Parameters:
qName 鈥 str
- Return type:
int
- PySide2.QtXml.QXmlAttributes.index(uri, localPart)
- Parameters:
uri 鈥 str
localPart 鈥 str
- Return type:
int
This is an overloaded function.
Looks up the index of an attribute by a namespace name.
urispecifies the namespace URI, or an empty string if the name has no namespace URI.localPartspecifies the attribute鈥檚 local name.Returns the index of the attribute, or -1 if it wasn鈥檛 found.
- PySide2.QtXml.QXmlAttributes.length()露
- Return type:
int
Returns the number of attributes in the list.
See also
- PySide2.QtXml.QXmlAttributes.localName(index)露
- Parameters:
index 鈥 int
- Return type:
str
Looks up an attribute鈥檚 local name for the attribute at position
index. If no namespace processing is done, the local name is an empty string.
- PySide2.QtXml.QXmlAttributes.qName(index)露
- Parameters:
index 鈥 int
- Return type:
str
Looks up an attribute鈥檚 XML 1.0 qualified name for the attribute at position
index.
- PySide2.QtXml.QXmlAttributes.swap(other)露
- Parameters:
other 鈥
PySide2.QtXml.QXmlAttributes
Swaps
thiswithother.
- PySide2.QtXml.QXmlAttributes.type(qName)露
- Parameters:
qName 鈥 str
- Return type:
str
- PySide2.QtXml.QXmlAttributes.type(uri, localName)
- Parameters:
uri 鈥 str
localName 鈥 str
- Return type:
str
This is an overloaded function.
Looks up an attribute鈥檚 type by namespace name.
urispecifies the namespace URI andlocalNamespecifies the local name. If the name has no namespace URI, use an empty string foruri.Currently only 鈥淐DATA鈥 is returned.
- PySide2.QtXml.QXmlAttributes.type(index)
- Parameters:
index 鈥 int
- Return type:
str
Looks up an attribute鈥檚 type for the attribute at position
index.Currently only 鈥淐DATA鈥 is returned.
- PySide2.QtXml.QXmlAttributes.uri(index)露
- Parameters:
index 鈥 int
- Return type:
str
Looks up an attribute鈥檚 namespace URI for the attribute at position
index. If no namespace processing is done or if the attribute has no namespace, the namespace URI is an empty string.
- PySide2.QtXml.QXmlAttributes.value(qName)露
- Parameters:
qName 鈥 str
- Return type:
str
- PySide2.QtXml.QXmlAttributes.value(uri, localName)
- Parameters:
uri 鈥 str
localName 鈥 str
- Return type:
str
This is an overloaded function.
Returns an attribute鈥檚 value by namespace name.
urispecifies the namespace URI, or an empty string if the name has no namespace URI.localNamespecifies the attribute鈥檚 local name.
- PySide2.QtXml.QXmlAttributes.value(index)
- Parameters:
index 鈥 int
- Return type:
str
Returns an attribute鈥檚 value for the attribute at position
index. The index must be a valid position (i.e., 0 <=index<count()).
漏 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.