QXmlAttributesclass provides XML attributes. 更多 …
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)
If attributes are reported by
startElement()this class is used to pass the attribute values.使用
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()。使用type()to get an attribute’s type andvalue()to get its value. The attribute’s name is available fromlocalName()orqName(), and its namespace URI fromuri().
QXmlAttributes
¶
注意
This constructor is deprecated.
QXmlAttributes(arg__1)
- param arg__1
Constructs an empty attribute list.
PySide2.QtXml.QXmlAttributes.
append
(
qName
,
uri
,
localPart
,
value
)
¶
qName – unicode
uri – unicode
localPart – unicode
value – unicode
Appends a new attribute entry to the list of attributes. The qualified name of the attribute is
qName
, the namespace URI is
uri
and the local name is
localPart
. The value of the attribute is
value
.
另请参阅
PySide2.QtXml.QXmlAttributes.
count
(
)
¶
int
Returns the number of attributes in the list. This function is equivalent to
length()
.
PySide2.QtXml.QXmlAttributes.
index
(
qName
)
¶
qName – unicode
int
PySide2.QtXml.QXmlAttributes.
index
(
uri
,
localPart
)
¶
uri – unicode
localPart – unicode
int
这是重载函数。
Looks up the index of an attribute by a namespace name.
uri
specifies the namespace URI, or an empty string if the name has no namespace URI.
localPart
specifies the attribute’s local name.
Returns the index of the attribute, or -1 if it wasn’t found.
PySide2.QtXml.QXmlAttributes.
length
(
)
¶
int
Returns the number of attributes in the list.
另请参阅
PySide2.QtXml.QXmlAttributes.
localName
(
index
)
¶
index
–
int
unicode
Looks up an attribute’s 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
)
¶
index
–
int
unicode
Looks up an attribute’s XML 1.0 qualified name for the attribute at position
index
.
PySide2.QtXml.QXmlAttributes.
swap
(
other
)
¶
other
–
QXmlAttributes
交换
this
with
other
.
PySide2.QtXml.QXmlAttributes.
type
(
qName
)
¶
qName – unicode
unicode
PySide2.QtXml.QXmlAttributes.
type
(
uri
,
localName
)
¶
uri – unicode
localName – unicode
unicode
这是重载函数。
Looks up an attribute’s type by namespace name.
uri
specifies the namespace URI and
localName
specifies the local name. If the name has no namespace URI, use an empty string for
uri
.
Currently only “CDATA” is returned.
PySide2.QtXml.QXmlAttributes.
type
(
index
)
¶
index
–
int
unicode
Looks up an attribute’s type for the attribute at position
index
.
Currently only “CDATA” is returned.
PySide2.QtXml.QXmlAttributes.
uri
(
index
)
¶
index
–
int
unicode
Looks up an attribute’s 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
)
¶
qName – unicode
unicode
PySide2.QtXml.QXmlAttributes.
value
(
uri
,
localName
)
¶
uri – unicode
localName – unicode
unicode
这是重载函数。
Returns an attribute’s value by namespace name.
uri
specifies the namespace URI, or an empty string if the name has no namespace URI.
localName
specifies the attribute’s local name.