]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/xmlattr.tex
added more wxUSE_XXX symbols (modified patch 1758917)
[wxWidgets.git] / docs / latex / wx / xmlattr.tex
1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2 %% Name: xmlnode.tex
3 %% Purpose: wxXmlAttribute documentation
4 %% Author: Francesco Montorsi
5 %% Created: 2006-04-18
6 %% RCS-ID: $Id$
7 %% Copyright: (c) 2006 Francesco Montorsi
8 %% License: wxWindows license
9 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
10
11 \section{\class{wxXmlAttribute}}\label{wxxmlattribute}
12
13 Represents a node attribute.
14
15 Example: in {\tt <img src="hello.gif" id="3"/>}, {\tt ``src"} is attribute with value
16 {\tt ``hello.gif"} and {\tt ``id"} is a attribute with value {\tt ``3"}.
17
18 \wxheading{Derived from}
19
20 No base class
21
22 \wxheading{Include files}
23
24 <wx/xml/xml.h>
25
26 \wxheading{See also}
27
28 \helpref{wxXmlDocument}{wxxmldocument}, \helpref{wxXmlNode}{wxxmlnode}
29
30 \latexignore{\rtfignore{\wxheading{Members}}}
31
32
33 \membersection{wxXmlAttribute::wxXmlAttribute}\label{wxxmlattributewxxmlattribute}
34
35 \func{}{wxXmlAttribute}{\void}
36
37
38 \func{}{wxXmlAttribute}{\param{const wxString\& }{name}, \param{const wxString\& }{value}, \param{wxXmlAttribute* }{next = NULL}}
39
40 Creates the attribute with given {\it name} and {\it value}.
41 If {\it next} is not NULL, then sets it as sibling of this attribute.
42
43 \membersection{wxXmlAttribute::\destruct{wxXmlAttribute}}\label{wxxmlattributedtor}
44
45 \func{}{\destruct{wxXmlAttribute}}{\void}
46
47 The virtual destructor.
48
49 \membersection{wxXmlAttribute::GetName}\label{wxxmlattributegetname}
50
51 \constfunc{wxString}{GetName}{\void}
52
53 Returns the name of this attribute.
54
55 \membersection{wxXmlAttribute::GetNext}\label{wxxmlattributegetnext}
56
57 \constfunc{wxXmlAttribute*}{GetNext}{\void}
58
59 Returns the sibling of this attribute or NULL if there are no siblings.
60
61 \membersection{wxXmlAttribute::GetValue}\label{wxxmlattributegetvalue}
62
63 \constfunc{wxString}{GetValue}{\void}
64
65 Returns the value of this attribute.
66
67 \membersection{wxXmlAttribute::SetName}\label{wxxmlattributesetname}
68
69 \func{void}{SetName}{\param{const wxString\& }{name}}
70
71 Sets the name of this attribute.
72
73 \membersection{wxXmlAttribute::SetNext}\label{wxxmlattributesetnext}
74
75 \func{void}{SetNext}{\param{wxXmlAttribute* }{next}}
76
77 Sets the sibling of this attribute.
78
79 \membersection{wxXmlAttribute::SetValue}\label{wxxmlattributesetvalue}
80
81 \func{void}{SetValue}{\param{const wxString\& }{value}}
82
83 Sets the value of this attribute.
84