Sha256: 7ae45f36fe6fcb4f0e651dcad5b28fa4a8cd0e6c1f6ce7d331b41ce1d7ef5566
Contents?: true
Size: 1.51 KB
Versions: 2
Compression:
Stored size: 1.51 KB
Contents
# :stopdoc: # This file is automatically generated by the WXRuby3 documentation # generator. Do not alter this file. # :startdoc: module Wx::GRID # Grid cell editor for string data providing the user a choice from a list of strings. # === # # Category: Grid Related Classes # @see Wx::GRID::GridCellEditor # @see Wx::GRID::GridCellAutoWrapStringEditor # @see Wx::GRID::GridCellBoolEditor # @see Wx::GRID::GridCellEnumEditor # @see Wx::GRID::GridCellFloatEditor # @see Wx::GRID::GridCellNumberEditor # @see Wx::GRID::GridCellTextEditor # @see Wx::GRID::GridCellDateEditor # # # # @note This class is <b>untracked</b> and should not be derived from nor instances extended! class GridCellChoiceEditor < GridCellEditor # Choice cell renderer ctor. # @param choices [Array<String>] An array of strings from which the user can choose. # @param allowOthers [Boolean] If allowOthers is true, the user can type a string not in choices array. # @return [Wx::GRID::GridCellChoiceEditor] def initialize(choices, allowOthers=false) end # 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. # @param params [String] # @return [void] def set_parameters(params) end alias_method :parameters=, :set_parameters end # GridCellChoiceEditor end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wxruby3-0.9.1-x64-mingw-ucrt | lib/wx/doc/gen/grid/grid_cell_choice_editor.rb |
wxruby3-0.9.0-x64-mingw-ucrt | lib/wx/doc/gen/grid/grid_cell_choice_editor.rb |