Represents a node attribute.
Example: in <img src="hello.gif" id="3"/>
, src
is an attribute with value hello.gif
and id
is an attribute with value 3
.
See also
__init__ |
Default constructor. |
GetName |
Returns the name of this attribute. |
GetNext |
Returns the sibling of this attribute or None if there are no siblings. |
GetValue |
Returns the value of this attribute. |
SetName |
Sets the name of this attribute. |
SetNext |
Sets the sibling of this attribute. |
SetValue |
Sets the value of this attribute. |
Name |
See GetName and SetName |
Next |
See GetNext and SetNext |
Value |
See GetValue and SetValue |
wx.xml.
XmlAttribute
(object)¶Possible constructors:
XmlAttribute()
XmlAttribute(name, value, next=None)
Represents a node attribute.
__init__
(self, *args, **kw)¶__init__ (self)
Default constructor.
__init__ (self, name, value, next=None)
Creates the attribute with given name and value.
If next is not None
, then sets it as sibling of this attribute.
Parameters: |
|
---|
GetName
(self)¶Returns the name of this attribute.
Return type: | string |
---|
GetNext
(self)¶Returns the sibling of this attribute or None
if there are no siblings.
Return type: | wx.xml.XmlAttribute |
---|
GetValue
(self)¶Returns the value of this attribute.
Return type: | string |
---|
SetName
(self, name)¶Sets the name of this attribute.
Parameters: | name (string) – |
---|
SetNext
(self, next)¶Sets the sibling of this attribute.
Parameters: | next (wx.xml.XmlAttribute) – |
---|
SetValue
(self, value)¶Sets the value of this attribute.
Parameters: | value (string) – |
---|