Class: Fox::FXTablePos

Inherits:
Object
  • Object
show all
Defined in:
rdoc-sources/FXTable.rb

Overview

Represents a cell position in an FXTable.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeFXTablePos

Returns an initialized FXTablePos instance.



15
# File 'rdoc-sources/FXTable.rb', line 15

def initialize; end

Instance Attribute Details

#colObject

Cell column (zero-based) [Integer]



10
11
12
# File 'rdoc-sources/FXTable.rb', line 10

def col
  @col
end

#rowObject

Cell row (zero-based) [Integer]



7
8
9
# File 'rdoc-sources/FXTable.rb', line 7

def row
  @row
end