Sha256: c929aacc48b10185f584af2fb61fb506be5f244c3f2ab6e2bd659a741c56afbe
Contents?: true
Size: 1.45 KB
Versions: 1
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 # 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! # @wxrb_require USE_GRID 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wxruby3-0.9.2-x64-mingw-ucrt | lib/wx/doc/gen/grid/grid_cell_text_editor.rb |