wxgbspanthis class is used to hold the row and column spanning attributes of items in a wxgridbagsizer. derived from no base class include files <wx/gbsizer.h> members
wxgbspan::wxgbspan
wxgbspan::wxgbspanwxgbspan() wxgbspan(int rowspan, int colspan) construct a new wxgbspan, optionally setting the rowspan and colspan. the default is (1,1). (meaning that the item occupies one cell in each direction.
wxgbspan::getcolspanint getcolspan() const get the current colspan value.
wxgbspan::getrowspanint getrowspan() const get the current rowspan value.
wxgbspan::setcolspanvoid setcolspan(int colspan) set a new colspan value.
wxgbspan::setrowspanvoid setrowspan(int rowspan) set a new rowspan value.
wxgbspan::operator!bool operator!(const wxgbspan& o) const is the wxgbspan valid? (an invalid wxgbspan is (-1,-1). )
wxgbspan::operator==bool operator operator==(const wxgbspan& o) const compare equality of two wxgbspans.
|