Sha256: f06cda6e0b13a0d8057c86bf132f1b7e2054832e9c8b92499f5b2766de60bff5
Contents?: true
Size: 1.15 KB
Versions: 10
Compression:
Stored size: 1.15 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 # # 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 [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
10 entries across 10 versions & 1 rubygems