Sha256: 402094a2db74a2a7161c35418147be361e8517ac858d06868588141d14518153
Contents?: true
Size: 1.52 KB
Versions: 10
Compression:
Stored size: 1.52 KB
Contents
# :stopdoc: # This file is automatically generated by the WXRuby3 documentation # generator. Do not alter this file. # :startdoc: module Wx::GRID # This class may be used to show a date, without time, in a cell. # See {Wx::GRID::GridCellDateTimeRenderer} for a date/time version. Wx::DateTime#format is used internally to render the date representation. Wx::DateTime#parse_date is used to parse the string data entered in the cell. # === # # Category: Grid Related Classes # @see Wx::GRID::GridCellRenderer # @see Wx::GRID::GridCellAutoWrapStringRenderer # @see Wx::GRID::GridCellBoolRenderer # @see Wx::GRID::GridCellEnumRenderer # @see Wx::GRID::GridCellFloatRenderer # @see Wx::GRID::GridCellNumberRenderer # @see Wx::GRID::GridCellStringRenderer # @see Wx::GRID::GridCellDateTimeRenderer # # class GridCellDateRenderer < GridCellStringRenderer # Date renderer constructor. # @param outformat [String] strftime()-like format string used to render the output date. By default (or if provided format string is empty) localized date representation ("%x") is used. # @return [GridCellDateRenderer] def initialize(outformat=(())) end # Sets the strftime()-like format string which will be used to render the date. # @param params [String] strftime()-like format string used to render the date. # @return [void] def set_parameters(params) end alias_method :parameters=, :set_parameters end # GridCellDateRenderer end
Version data entries
10 entries across 10 versions & 1 rubygems