Sha256: e9096abaa6094ab7c97d1a6a06f22861b2f6ed19eef1576b04263213783eccdb
Contents?: true
Size: 1.5 KB
Versions: 2
Compression:
Stored size: 1.5 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 # # # @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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wxruby3-0.9.5-x64-mingw-ucrt | lib/wx/doc/gen/grid/grid_cell_float_editor.rb |
wxruby3-0.9.4-x64-mingw-ucrt | lib/wx/doc/gen/grid/grid_cell_float_editor.rb |