Sha256: 25042dcf3015ef7a80d5a6ab86f7e92df2d50f88b7b52cf0cb698a424e9a95c4
Contents?: true
Size: 1.43 KB
Versions: 2
Compression:
Stored size: 1.43 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 string/text 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::GridCellNumberEditor # @see Wx::GRID::GridCellDateEditor # # # # @note This class is <b>untracked</b> and should not be derived from nor instances extended! class GridCellTextEditor < GridCellEditor # Text cell editor constructor. # @param maxChars [Integer] Maximum width of text (this parameter is supported starting since wxWidgets 2.9.5). # @return [Wx::GRID::GridCellTextEditor] def initialize(maxChars=0) end # The parameters string format is "n" where n is a number representing the maximum width. # @param params [String] # @return [void] def set_parameters(params) end alias_method :parameters=, :set_parameters # Set validator to validate user input. # @param validator [Wx::Validator] # @return [void] def set_validator(validator) end alias_method :validator=, :set_validator end # GridCellTextEditor end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wxruby3-0.9.1-x64-mingw-ucrt | lib/wx/doc/gen/grid/grid_cell_text_editor.rb |
wxruby3-0.9.0-x64-mingw-ucrt | lib/wx/doc/gen/grid/grid_cell_text_editor.rb |