# :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 # # # # @note This class is untracked and should not be derived from nor instances extended! 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 [Wx::GRID::GridCellFloatEditor] def initialize(width=-1, precision=-1, format=Wx::GRID::GridCellFloatFormat::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