]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/stattext.tex
wxLog::FlushActive added
[wxWidgets.git] / docs / latex / wx / stattext.tex
CommitLineData
a660d684
KB
1\section{\class{wxStaticText}}\label{wxstatictext}
2
3A static text control displays one or more lines of read-only text.
4
a660d684
KB
5\wxheading{Derived from}
6
7\helpref{wxControl}{wxcontrol}\\
8\helpref{wxWindow}{wxwindow}\\
9\helpref{wxEvtHandler}{wxevthandler}\\
10\helpref{wxObject}{wxobject}
11
954b8ae6
JS
12\wxheading{Include files}
13
14<wx/stattext.h>
15
a660d684
KB
16\wxheading{Window styles}
17
18There are no special styles for this control.
19
20See also \helpref{window styles overview}{windowstyles}.
21
22\wxheading{See also}
23
24\helpref{wxStaticBitmap}{wxstaticbitmap}, \helpref{wxStaticBox}{wxstaticbox}
25
26\latexignore{\rtfignore{\wxheading{Members}}}
27
28\membersection{wxStaticText::wxStaticText}\label{wxstatictextconstr}
29
30\func{}{wxStaticText}{\void}
31
32Default constructor.
33
eaaa6a06 34\func{}{wxStaticText}{\param{wxWindow* }{parent}, \param{wxWindowID}{ id},\rtfsp
36b3b54a 35\param{const wxString\& }{label = ``"}, \param{const wxPoint\& }{pos}, \param{const wxSize\& }{size = wxDefaultSize},\rtfsp
eaaa6a06 36\param{long}{ style = 0}, \param{const wxString\& }{name = ``staticText"}}
a660d684
KB
37
38Constructor, creating and showing a text control.
39
40\wxheading{Parameters}
41
42\docparam{parent}{Parent window. Should not be NULL.}
43
44\docparam{id}{Control identifier. A value of -1 denotes a default value.}
45
46\docparam{label}{Text label.}
47
48\docparam{pos}{Window position.}
49
50\docparam{size}{Window size.}
51
52\docparam{style}{Window style. See \helpref{wxStaticText}{wxstatictext}.}
53
54\docparam{name}{Window name.}
55
56\wxheading{See also}
57
58\helpref{wxStaticText::Create}{wxstatictextcreate}
59
60\membersection{wxStaticText::Create}\label{wxstatictextcreate}
61
eaaa6a06 62\func{bool}{Create}{\param{wxWindow* }{parent}, \param{wxWindowID}{ id},\rtfsp
36b3b54a 63\param{const wxString\& }{label = ``"}, \param{const wxPoint\& }{pos}, \param{const wxSize\& }{size = wxDefaultSize},\rtfsp
eaaa6a06 64\param{long}{ style = 0}, \param{const wxString\& }{name = ``staticText"}}
a660d684
KB
65
66Creation function, for two-step construction. For details see \helpref{wxStaticText::wxStaticText}{wxstatictextconstr}.
67
68\membersection{wxStaticText::GetLabel}\label{wxstatictextgetlabel}
69
70\constfunc{wxString}{GetLabel}{\void}
71
72Returns the contents of the control.
73
74\membersection{wxStaticText::SetLabel}\label{wxstatictextsetlabel}
75
76\func{virtual void}{SetLabel}{\param{const wxString\& }{ label}}
77
78Sets the static text label.
79
80\wxheading{Parameters}
81
82\docparam{label}{The new label to set. It may contain newline characters.}
83
84