Sha256: abeaae72f82c3536c2b0b766707fe76a7a38901d6d40c64fca181a975b44cae5
Contents?: true
Size: 1.65 KB
Versions: 1
Compression:
Stored size: 1.65 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 # # # # @note This class is <b>untracked</b> and should not be derived from nor instances extended! # @wxrb_require USE_GRID 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 [Wx::GRID::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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wxruby3-0.9.2-x64-mingw-ucrt | lib/wx/doc/gen/grid/grid_cell_date_renderer.rb |