Sha256: 6ba94127b1aaae0fcc51ce65be1c9e319d7f1a593b09bf64858c730d91edae6e
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 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 # # # # @note This class is <b>untracked</b> and should not be derived from nor instances extended! # @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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wxruby3-0.9.2-x64-mingw-ucrt | lib/wx/doc/gen/grid/grid_cell_number_editor.rb |