]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/xmldocument.tex
document LoadObject() (patch 1873045)
[wxWidgets.git] / docs / latex / wx / xmldocument.tex
index d73740818b4b27f844658e0d0469b8379deb9d71..94574c9e0a31d855b632511eae68364cc3bc9146 100644 (file)
@@ -1,5 +1,5 @@
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%% Name:        xmlnode.tex
+%% Name:        xmldocument.tex
 %% Purpose:     wxXmlDocument documentation
 %% Author:      Francesco Montorsi
 %% Created:     2006-04-18
@@ -36,12 +36,12 @@ while (child) {
         ...
 
 
-        // process properties of <tag1>
-        wxString propvalue1 = 
-            child->GetPropVal(wxT("prop1"), 
+        // process attributes of <tag1>
+        wxString attrvalue1 = 
+            child->GetAttribute(wxT("attr1"), 
                               wxT("default-value"));
-        wxString propvalue2 = 
-            child->GetPropVal(wxT("prop2"), 
+        wxString attrvalue2 = 
+            child->GetAttribute(wxT("attr2"), 
                               wxT("default-value"));
 
         ...
@@ -84,9 +84,13 @@ doc.Save(wxT("myfile2.xml"));  // myfile2.xml != myfile.xml
 
 <wx/xml/xml.h>
 
+\wxheading{Library}
+
+\helpref{wxXml}{librarieslist}
+
 \wxheading{See also}
 
-\helpref{wxXmlNode}{wxxmlnode}, \helpref{wxXmlProperty}{wxxmlproperty}
+\helpref{wxXmlNode}{wxxmlnode}, \helpref{wxXmlAttribute}{wxxmlattribute}
 
 
 \latexignore{\rtfignore{\wxheading{Members}}}
@@ -166,7 +170,7 @@ Returns the root node of the document.
 
 Returns the version of document.
 This is the value in the {\tt <?xml version="1.0"?>} header of the XML document.
-If the version property was not explicitely given in the header, this function
+If the version attribute was not explicitely given in the header, this function
 returns an empty string.