Sha256: 4c36e5029a82c04292d79ca1da33fc729accffa0c1c69e3631539f7664b98ff6
Contents?: true
Size: 917 Bytes
Versions: 2
Compression:
Stored size: 917 Bytes
Contents
# :stopdoc: # Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. # :startdoc: module Wx::GRID GRID_VALUE_STRING = 'string' GRID_VALUE_BOOL = 'bool' GRID_VALUE_NUMBER = 'long' GRID_VALUE_FLOAT = 'double' GRID_VALUE_CHOICE = 'choice' GRID_VALUE_DATE = 'date' GRID_VALUE_TEXT = GRID_VALUE_STRING GRID_VALUE_LONG = GRID_VALUE_NUMBER class Grid alias :set_table :assign_table alias :table= :assign_table # Iterates all selected blocks passing each corresponding Wx::GRID::GridBlockCoords to the given block # or returns an enumerator if no block given. # @yieldparam [Wx::GRID::GridBlockCoords] selected_block # @return [Object,Enumerator] result of last block execution or an Enumerator if no block given def selected_blocks; end end # Provides an opaque handle for grid windows. class GridWindow; end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wxruby3-0.9.1 | lib/wx/doc/grid/grid.rb |
wxruby3-0.9.0 | lib/wx/doc/grid/grid.rb |