Sha256: 8756e3ae5bf8889cc30c0b9a07bc66b3b9d5d907f9088a1e726f951b03ea7cd6
Contents?: true
Size: 1.87 KB
Versions: 10
Compression:
Stored size: 1.87 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 # # class GridCellChoiceEditor < GridCellEditor # @overload initialize(count=0, choices=nil, allowOthers=false) # Choice cell renderer ctor. # @param count [Integer] Number of strings from which the user can choose. # @param choices [Wx::String] An array of strings from which the user can choose. # @param allowOthers [true,false] If allowOthers is true, the user can type a string not in choices array. # @return [GridCellChoiceEditor] # @overload initialize(choices, allowOthers=false) # Choice cell renderer ctor. # @param choices [Array<String>] An array of strings from which the user can choose. # @param allowOthers [true,false] If allowOthers is true, the user can type a string not in choices array. # @return [GridCellChoiceEditor] def initialize(*args) 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
10 entries across 10 versions & 1 rubygems