Sha256: 07b75667f5b68b790fe949ac3bacfebe72dbc3878fc8070f4149a204719dcc5e
Contents?: true
Size: 1.26 KB
Versions: 2
Compression:
Stored size: 1.26 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! 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.1-x64-mingw-ucrt | lib/wx/doc/gen/grid/grid_cell_number_editor.rb |
wxruby3-0.9.0-x64-mingw-ucrt | lib/wx/doc/gen/grid/grid_cell_number_editor.rb |