GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
wxMultiChoiceDialog(3) Erlang Module Definition wxMultiChoiceDialog(3)

wxMultiChoiceDialog - Functions for wxMultiChoiceDialog class

This class represents a dialog that shows a list of strings, and allows the user to select one or more.

Styles

This class supports the following styles:

See: Overview cmndlg, wxSingleChoiceDialog

This class is derived (and can use functions) from: wxDialog wxTopLevelWindow wxWindow wxEvtHandler

wxWidgets docs: wxMultiChoiceDialog

wxMultiChoiceDialog() = wx:wx_object()

new(Parent, Message, Caption, Choices) -> wxMultiChoiceDialog()


Types:

Parent = wxWindow:wxWindow()
Message = Caption = unicode:chardata()
Choices = [unicode:chardata()]

new(Parent, Message, Caption, Choices, Options :: [Option]) ->

       wxMultiChoiceDialog()


Types:

Parent = wxWindow:wxWindow()
Message = Caption = unicode:chardata()
Choices = [unicode:chardata()]
Option = {style, integer()} | {pos, {X :: integer(), Y :: integer()}}

Constructor taking an array of wxString (not implemented in wx) choices.

Remark: Use wxDialog:showModal/1 to show the dialog.

getSelections(This) -> [integer()]


Types:

This = wxMultiChoiceDialog()

Returns array with indexes of selected items.

setSelections(This, Selections) -> ok


Types:

This = wxMultiChoiceDialog()
Selections = [integer()]

Sets selected items from the array of selected items' indexes.

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


Destroys the object.

wx 2.1.1 wxWidgets team.

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.