Sha256: 41c61db85974752838689f5ddff10e6fee7a36452090977f3755f3caf0f449c1
Contents?: true
Size: 1.32 KB
Versions: 10
Compression:
Stored size: 1.32 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 # # 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 [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
10 entries across 10 versions & 1 rubygems