1
2\section{\class{wxGBSpan}}\label{wxgbspan}
3
4This class is used to hold the row and column spanning attributes of
5items in a \helpref{wxGridBagSizer}{wxgridbagsizer}.
6
7\wxheading{Derived from}
8
9No base class
10
11\wxheading{Include files}
12
13<wx/gbsizer.h>
14
15\latexignore{\rtfignore{\wxheading{Members}}}
16
17\membersection{wxGBSpan::wxGBSpan}\label{wxgbspanwxgbspan}
18
19\func{}{wxGBSpan}{\void}
20
21\func{}{wxGBSpan}{\param{int }{rowspan}, \param{int }{colspan}}
22
23Construct a new wxGBSpan, optionally setting the rowspan and colspan.
24The default is (1,1).  (Meaning that the item occupies one cell in
25each direction.
26
27\membersection{wxGBSpan::GetColspan}\label{wxgbspangetcolspan}
28
29\constfunc{int}{GetColspan}{\void}
30
31Get the current colspan value.
32
33\membersection{wxGBSpan::GetRowspan}\label{wxgbspangetrowspan}
34
35\constfunc{int}{GetRowspan}{\void}
36
37Get the current rowspan value.
38
39\membersection{wxGBSpan::SetColspan}\label{wxgbspansetcolspan}
40
41\func{void}{SetColspan}{\param{int }{colspan}}
42
43Set a new colspan value.
44
45\membersection{wxGBSpan::SetRowspan}\label{wxgbspansetrowspan}
46
47\func{void}{SetRowspan}{\param{int }{rowspan}}
48
49Set a new rowspan value.
50
51\membersection{wxGBSpan::operator!}\label{wxgbspanoperatorunknown}
52
53\constfunc{bool}{operator!}{\param{const wxGBSpan\& }{o}}
54
55Is the wxGBSpan valid?  (An invalid wxGBSpan is (-1,-1). )
56
57\membersection{wxGBSpan::operator==}\label{wxgbspanoperatorequal}
58
59\constfunc{bool operator}{operator==}{\param{const wxGBSpan\& }{o}}
60
61Compare equality of two wxGBSpans.
62
63