Represents a node property.
Example: in <img src="hello.gif" id="3"/>, "src" is property with value "hello.gif" and "id" is a property with value "3".
Derived from
No base class
Include files
<wx/xml/xml.h>
See also
Members
wxXmlProperty::wxXmlProperty
wxXmlProperty::~wxXmlProperty
wxXmlProperty::GetName
wxXmlProperty::GetNext
wxXmlProperty::GetValue
wxXmlProperty::SetName
wxXmlProperty::SetNext
wxXmlProperty::SetValue
wxXmlProperty()
wxXmlProperty(const wxString& name, const wxString& value, wxXmlProperty* next = NULL)
Creates the property with given name and value. If next is not NULL, then sets it as sibling of this property.
~wxXmlProperty()
The virtual destructor.
wxString GetName() const
Returns the name of this property.
wxXmlProperty* GetNext() const
Returns the sibling of this property or NULL if there are no siblings.
wxString GetValue() const
Returns the value of this property.
void SetName(const wxString& name)
Sets the name of this property.
void SetNext(wxXmlProperty* next)
Sets the sibling of this property.
void SetValue(const wxString& value)
Sets the value of this property.