Sha256: d70177641804dc95ad52ef7392b8dd4191928ef77855d94033e06163ec4db8ac
Contents?: true
Size: 1.19 KB
Versions: 2
Compression:
Stored size: 1.19 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 numeric integer data. # # Category: Grid Related Classes # @see Wx::GRID::GridCellEditor # @see Wx::GRID::GridCellAutoWrapStringEditor # @see Wx::GRID::GridCellBoolEditor # @see Wx::GRID::GridCellChoiceEditor # @see Wx::GRID::GridCellEnumEditor # @see Wx::GRID::GridCellFloatEditor # @see Wx::GRID::GridCellTextEditor # @see Wx::GRID::GridCellDateEditor # # # @wxrb_require USE_GRID class GridCellNumberEditor < GridCellTextEditor # Allows you to specify the range for acceptable data. # # Values equal to -1 for both min and max indicate that no range checking should be done. # @param min [Integer] # @param max [Integer] # @return [Wx::GRID::GridCellNumberEditor] def initialize(min=-1, max=-1) end # Parameters string format is "min,max". # @param params [String] # @return [void] def set_parameters(params) end alias_method :parameters=, :set_parameters end # GridCellNumberEditor end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wxruby3-0.9.5-x64-mingw-ucrt | lib/wx/doc/gen/grid/grid_cell_number_editor.rb |
wxruby3-0.9.4-x64-mingw-ucrt | lib/wx/doc/gen/grid/grid_cell_number_editor.rb |