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)
-
- (Object) col
Cell column (zero-based) [Integer].
-
- (Object) row
Cell row (zero-based) [Integer].
Instance Method Summary (collapse)
-
- (FXTablePos) initialize
constructor
Returns an initialized FXTablePos instance.
Constructor Details
- (FXTablePos) initialize
Returns an initialized FXTablePos instance.
15 |
# File 'rdoc-sources/FXTable.rb', line 15 def initialize; end |
Instance Attribute Details
- (Object) col
Cell column (zero-based) [Integer]
10 11 12 |
# File 'rdoc-sources/FXTable.rb', line 10 def col @col end |
- (Object) row
Cell row (zero-based) [Integer]
7 8 9 |
# File 'rdoc-sources/FXTable.rb', line 7 def row @row end |