Sha256: 535a3fc3f9184c1dc624357497b333f7a498773a73f31014bcb59ed0ae49c303

Contents?: true

Size: 952 Bytes

Versions: 2

Compression:

Stored size: 952 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-x64-mingw-ucrt lib/wx/doc/grid/grid.rb
wxruby3-0.9.0-x64-mingw-ucrt lib/wx/doc/grid/grid.rb