include file: wxText
This control is used for creating a static label. The text in the
label will be automatically refreshed (as opposed to using wx_puts).
Creation parameters:
- atom parent
- integer id
- sequence text
- integer x [= -1]
- integer y [= -1]
- integer cx [= -1]
- integer cy [= -1]
- atom style [=wxST_NO_AUTORESIZE]
- wxALIGN_LEFT
- wxALIGN_RIGHT
- wxALIGN_CENTRE
- wxST_NO_AUTORESIZE: By default, the control will adjust its size to exactly fit
to the size of the text when SetLabel is called. If this style flag is given, the
control will not change its size (this style is especially useful with controls which
also have wxALIGN_RIGHT or CENTER style because otherwise they won't make sense any
longer after a call to SetLabel)
proc set_label( atom label, sequence text )
Parent Topics:
Classes
Controls
Category: wxStaticText