wxComboBox(3) See external documentation: wxComboBox.

DESCRIPTION

See external documentation: wxComboBox.

This class is derived (and can use functions) from:
wxControlWithItems
wxControl
wxWindow
wxEvtHandler

DATA TYPES

wxComboBox():

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() -> wxComboBox()

See external documentation.

new(Parent, Id) -> wxComboBox()

Types:

Parent = wxWindow() (see module wxWindow)
Id = integer()

Equivalent to new(Parent, Id, []).

new(Parent, Id, Options::[Option]) -> wxComboBox()

Types:

Parent = wxWindow() (see module wxWindow)
Id = integer()
Option = {value, chardata() (see module unicode)} | {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {choices, [chardata() (see module unicode)]} | {style, integer()} | {validator, wx_object() (see module wx)}

See external documentation.

create(This, Parent, Id, Value, Pos, Size, Choices) -> boolean()

Types:

This = wxComboBox()
Parent = wxWindow() (see module wxWindow)
Id = integer()
Value = chardata() (see module unicode)
Pos = {X::integer(), Y::integer()}
Size = {W::integer(), H::integer()}
Choices = [chardata() (see module unicode)]

Equivalent to create(This, Parent, Id, Value, Pos, Size, Choices, []).

create(This, Parent, Id, Value, Pos, Size, Choices, Options::[Option]) -> boolean()

Types:

This = wxComboBox()
Parent = wxWindow() (see module wxWindow)
Id = integer()
Value = chardata() (see module unicode)
Pos = {X::integer(), Y::integer()}
Size = {W::integer(), H::integer()}
Choices = [chardata() (see module unicode)]
Option = {style, integer()} | {validator, wx_object() (see module wx)}

See external documentation.

canCopy(This) -> boolean()

Types:

This = wxComboBox()

See external documentation.

canCut(This) -> boolean()

Types:

This = wxComboBox()

See external documentation.

canPaste(This) -> boolean()

Types:

This = wxComboBox()

See external documentation.

canRedo(This) -> boolean()

Types:

This = wxComboBox()

See external documentation.

canUndo(This) -> boolean()

Types:

This = wxComboBox()

See external documentation.

copy(This) -> ok

Types:

This = wxComboBox()

See external documentation.

cut(This) -> ok

Types:

This = wxComboBox()

See external documentation.

getInsertionPoint(This) -> integer()

Types:

This = wxComboBox()

See external documentation.

getLastPosition(This) -> integer()

Types:

This = wxComboBox()

See external documentation.

getValue(This) -> charlist() (see module unicode)

Types:

This = wxComboBox()

See external documentation.

paste(This) -> ok

Types:

This = wxComboBox()

See external documentation.

redo(This) -> ok

Types:

This = wxComboBox()

See external documentation.

replace(This, From, To, Value) -> ok

Types:

This = wxComboBox()
From = integer()
To = integer()
Value = chardata() (see module unicode)

See external documentation.

remove(This, From, To) -> ok

Types:

This = wxComboBox()
From = integer()
To = integer()

See external documentation.

setInsertionPoint(This, Pos) -> ok

Types:

This = wxComboBox()
Pos = integer()

See external documentation.

setInsertionPointEnd(This) -> ok

Types:

This = wxComboBox()

See external documentation.

setSelection(This, N) -> ok

Types:

This = wxComboBox()
N = integer()

See external documentation.

setSelection(This, From, To) -> ok

Types:

This = wxComboBox()
From = integer()
To = integer()

See external documentation.

setValue(This, Value) -> ok

Types:

This = wxComboBox()
Value = chardata() (see module unicode)

See external documentation.

undo(This) -> ok

Types:

This = wxComboBox()

See external documentation.

destroy(This::wxComboBox()) -> ok

Destroys this object, do not use object again

AUTHORS

<>