Pseudo-class that imitates BoxSizer
.
__init__ |
Constructor for BoxSizer . |
Add |
Appends a child item to the sizer. |
Insert |
Inserts a child item into the sizer. |
Layout |
Call this to force layout of the children anew, e.g. after having added a |
Prepend |
Prepends a child item to the sizer. |
Remove |
Removes an item from the sizer and destroys it. |
Show |
Shows or hides the sizer item. |
Pseudo-class that imitates BoxSizer
.
Constructor for BoxSizer
.
Parameters: | orient (integer) – may be one of wx.VERTICAL or wx.HORIZONTAL for creating
either a column sizer or a row sizer. |
---|
Appends a child item to the sizer.
Parameters: |
|
---|
Note
there is no support for userData parameter if item is a pseudocontrol, since that is already used.
Inserts a child item into the sizer.
See also
BoxSizer.Add
method for an explanation of the input parameters.
Call this to force layout of the children anew, e.g. after having added a child to or removed a child (window, other sizer or space) from the sizer while keeping the current dimension.
Prepends a child item to the sizer.
See also
BoxSizer.Add
method for an explanation of the input parameters.
Removes an item from the sizer and destroys it.
This method does not cause any layout or resizing to take place, call
BoxSizer.Layout()
to update the layout on screen after removing a child from
the sizer.
Parameters: |
|
---|
Shows or hides the sizer item.
Parameters: |
|
---|