table of contents
other versions
- jessie 1:17.3-dfsg-4+deb8u2
- jessie-backports 1:19.2.1+dfsg-2+deb9u1~bpo8+1
- stretch 1:19.2.1+dfsg-2+deb9u2
- testing 1:21.2.5+dfsg-1
- unstable 1:21.2.6+dfsg-1
- experimental 1:22.0~rc1+dfsg-1
wxStatusBar(3erl) | Erlang Module Definition | wxStatusBar(3erl) |
NAME¶
wxStatusBar - See external documentation: wxStatusBar.DESCRIPTION¶
See external documentation: wxStatusBar. This class is derived (and can use functions) from:DATA TYPES¶
- wxStatusBar():
An object reference, The representation is internal and can be changed without
notice. It can't be used for comparsion stored on disc or distributed for use
on other nodes.
EXPORTS¶
new() -> wxStatusBar()
See external documentation.
new(Parent) -> wxStatusBar()
Types:
Parent = wxWindow() (see module wxWindow)
Equivalent to new(Parent, []).
new(Parent, Option::[Option]) -> wxStatusBar()
Types:
Parent = wxWindow() (see module wxWindow)
Option = {winid, integer()} | {style, integer()}
See external documentation.
create(This, Parent) -> boolean()
Types:
This = wxStatusBar()
Parent = wxWindow() (see module wxWindow)
Equivalent to create(This, Parent, []).
create(This, Parent, Option::[Option]) -> boolean()
Types:
This = wxStatusBar()
Parent = wxWindow() (see module wxWindow)
Option = {winid, integer()} | {style, integer()}
See external documentation.
getFieldRect(This, I) -> Result
Types:
Result = {Res::boolean(), Rect::{X::integer(),
Y::integer(), W::integer(), H::integer()}}
This = wxStatusBar()
I = integer()
See external documentation.
getFieldsCount(This) -> integer()
Types:
This = wxStatusBar()
See external documentation.
getStatusText(This) -> charlist() (see module unicode)
Types:
This = wxStatusBar()
Equivalent to getStatusText(This, []).
getStatusText(This, Option::[Option]) -> charlist() (see module
unicode)
Types:
This = wxStatusBar()
Option = {number, integer()}
See external documentation.
popStatusText(This) -> ok
Types:
This = wxStatusBar()
Equivalent to popStatusText(This, []).
popStatusText(This, Option::[Option]) -> ok
Types:
This = wxStatusBar()
Option = {number, integer()}
See external documentation.
pushStatusText(This, Text) -> ok
Types:
This = wxStatusBar()
Text = chardata() (see module unicode)
Equivalent to pushStatusText(This, Text, []).
pushStatusText(This, Text, Option::[Option]) -> ok
Types:
This = wxStatusBar()
Text = chardata() (see module unicode)
Option = {number, integer()}
See external documentation.
setFieldsCount(This, Number) -> ok
Types:
This = wxStatusBar()
Number = integer()
Equivalent to setFieldsCount(This, Number, []).
setFieldsCount(This, Number, Option::[Option]) -> ok
Types:
This = wxStatusBar()
Number = integer()
Option = {widths, [integer()]}
See external documentation.
setMinHeight(This, Height) -> ok
Types:
This = wxStatusBar()
Height = integer()
See external documentation.
setStatusText(This, Text) -> ok
Types:
This = wxStatusBar()
Text = chardata() (see module unicode)
Equivalent to setStatusText(This, Text, []).
setStatusText(This, Text, Option::[Option]) -> ok
Types:
This = wxStatusBar()
Text = chardata() (see module unicode)
Option = {number, integer()}
See external documentation.
setStatusWidths(This, Widths_field) -> ok
Types:
This = wxStatusBar()
Widths_field = [integer()]
See external documentation.
setStatusStyles(This, Styles) -> ok
Types:
This = wxStatusBar()
Styles = [integer()]
See external documentation.
destroy(This::wxStatusBar()) -> ok
Destroys this object, do not use object again
AUTHORS¶
<>wx 1.3.1 |