View Source wxGridCellChoiceEditor (wx v2.4.2)
Functions for wxGridCellChoiceEditor class
Grid cell editor for string data providing the user a choice from a list of strings.
See: wxGridCellEditor
, wxGridCellAutoWrapStringEditor
(not implemented in
wx), wxGridCellBoolEditor
, wxGridCellEnumEditor
(not implemented in wx),
wxGridCellFloatEditor
, wxGridCellNumberEditor
, wxGridCellTextEditor
,
wxGridCellDateEditor
(not implemented in wx)
This class is derived (and can use functions) from: wxGridCellEditor
wxWidgets docs: wxGridCellChoiceEditor
Summary
Functions
Destroys the object.
Choice cell renderer ctor.
Parameters string format is "item1[,item2[...,itemN]]".
Types
-type wxGridCellChoiceEditor() :: wx:wx_object().
Functions
-spec destroy(This :: wxGridCellChoiceEditor()) -> ok.
Destroys the object.
-spec new(Choices) -> wxGridCellChoiceEditor() when Choices :: [unicode:chardata()].
-spec new(Choices, [Option]) -> wxGridCellChoiceEditor() when Choices :: [unicode:chardata()], Option :: {allowOthers, boolean()}.
Choice cell renderer ctor.
-spec setParameters(This, Params) -> ok when This :: wxGridCellChoiceEditor(), Params :: unicode:chardata().
Parameters string format is "item1[,item2[...,itemN]]".
This method can be called before the editor is used for the first time, or later, in which case it replaces the previously specified strings with the new ones.