wxStaticLineA 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. Derived from
wxControl Include files <wx/statline.h> Window styles
See also Members
wxStaticLine::wxStaticLine
wxStaticLine::wxStaticLinewxStaticLine() Default constructor. wxStaticLine(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxLI_HORIZONTAL, const wxString& name = "staticLine") Constructor, creating and showing a static line. Parameters parent
id
pos
size
style
name
See also
wxStaticLine::Createbool Create(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& name = "staticLine") Creates the static line for two-step construction. See wxStaticLine::wxStaticLine for further details.
wxStaticLine::IsVerticalbool IsVertical() const Returns true if the line is vertical, false if horizontal.
wxStaticLine::GetDefaultSizeint 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.
|