wxXmlPropertyRepresents 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::wxXmlPropertywxXmlProperty() 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::~wxXmlProperty~wxXmlProperty() The virtual destructor.
wxXmlProperty::GetNamewxString GetName() const Returns the name of this property.
wxXmlProperty::GetNextwxXmlProperty* GetNext() const Returns the sibling of this property or NULL if there are no siblings.
wxXmlProperty::GetValuewxString GetValue() const Returns the value of this property.
wxXmlProperty::SetNamevoid SetName(const wxString& name) Sets the name of this property.
wxXmlProperty::SetNextvoid SetNext(wxXmlProperty* next) Sets the sibling of this property.
wxXmlProperty::SetValuevoid SetValue(const wxString& value) Sets the value of this property.
|