Class: Fox::FXTablePos
- Inherits:
-
Object
- Object
- Fox::FXTablePos
- Defined in:
- rdoc-sources/FXTable.rb
Overview
Represents a cell position in an FXTable.
Instance Attribute Summary collapse
-
#col ⇒ Object
Cell column (zero-based) [Integer].
-
#row ⇒ Object
Cell row (zero-based) [Integer].
Instance Method Summary collapse
-
#initialize ⇒ FXTablePos
constructor
Returns an initialized FXTablePos instance.
Constructor Details
#initialize ⇒ FXTablePos
Returns an initialized FXTablePos instance.
15 |
# File 'rdoc-sources/FXTable.rb', line 15 def initialize; end |
Instance Attribute Details
#col ⇒ Object
Cell column (zero-based) [Integer]
10 11 12 |
# File 'rdoc-sources/FXTable.rb', line 10 def col @col end |
#row ⇒ Object
Cell row (zero-based) [Integer]
7 8 9 |
# File 'rdoc-sources/FXTable.rb', line 7 def row @row end |