A static line is just a line which may be used in a dialog to separate the groups of controls.
The line may be only vertical or horizontal. Moreover, not all ports (notably not wxGTK) support specifying the transversal direction of the line (e.g. height for a horizontal line) so for maximal portability you should specify it as DefaultCoord.
This class supports the following styles:
wx.LI_HORIZONTAL
: Creates a horizontal line.wx.LI_VERTICAL
: Creates a vertical line.See also
__init__ |
Default constructor. |
Create |
Creates the static line for two-step construction. |
GetDefaultSize |
This static function returns the size which will be given to the smaller dimension of the static line, i.e. |
IsVertical |
Returns True if the line is vertical, False if horizontal. |
wx.
StaticLine
(Control)¶Possible constructors:
StaticLine()
StaticLine(parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize,
style=LI_HORIZONTAL, name=StaticLineNameStr)
A static line is just a line which may be used in a dialog to separate the groups of controls.
__init__
(self, *args, **kw)¶__init__ (self)
Default constructor.
__init__ (self, parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize, style=LI_HORIZONTAL, name=StaticLineNameStr)
Constructor, creating and showing a static line.
Parameters: |
|
---|
See also
Create
(self, parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize, style=LI_HORIZONTAL, name=StaticLineNameStr)¶Creates the static line for two-step construction.
See wx.StaticLine for further details.
Parameters: | |
---|---|
Return type: | bool |
GetDefaultSize
()¶This static function returns the size which will be given to the smaller dimension of the static line, i.e.
its height for a horizontal line or its width for a vertical one.
Return type: | int |
---|
IsVertical
(self)¶Returns True
if the line is vertical, False
if horizontal.
Return type: | bool |
---|