Sha256: 00c2c7e3e4e80bca4db5914eed2a597f194e3f587417c3ec948520961e087d79
Contents?: true
Size: 1.6 KB
Versions: 1
Compression:
Stored size: 1.6 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 # # # # @note This class is <b>untracked</b> and should not be derived from nor instances extended! # @wxrb_require USE_GRID 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
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_float_editor.rb |