Sha256: b566fd98153ad56cfa03ae880f4b0b11deacc19e9c1b07c6477ea31cbbf85557
Contents?: true
Size: 1.45 KB
Versions: 6
Compression:
Stored size: 1.45 KB
Contents
# :stopdoc: # This file is automatically generated by the WXRuby3 documentation # generator. Do not alter this file. # :startdoc: module Wx::GRID # The editor for floating point numbers 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::GridCellNumberEditor # @see Wx::GRID::GridCellTextEditor # @see Wx::GRID::GridCellDateEditor # # class GridCellFloatEditor < GridCellTextEditor # Float cell editor ctor. # @param width [Integer] Minimum number of characters to be shown. # @param precision [Integer] Number of digits after the decimal dot. # @param format [Integer] The format to use for displaying the number, a combination of {Wx::GRID::GridCellFloatFormat} enum elements. This parameter is only available since wxWidgets 2.9.3. # @return [GridCellFloatEditor] def initialize(width=-1, precision=-1, format=Wx::GRID_FLOAT_FORMAT_DEFAULT) end # The parameters string format is "width[,precision[,format]]" where format should be chosen between f|e|g|E|G (f is used by default) # @param params [String] # @return [void] def set_parameters(params) end alias_method :parameters=, :set_parameters end # GridCellFloatEditor end
Version data entries
6 entries across 6 versions & 1 rubygems