Class: LatexTools::LatexTable::Cline
- Inherits:
-
Object
- Object
- LatexTools::LatexTable::Cline
- Defined in:
- lib/latex_table.rb
Overview
:nodoc: all
Instance Attribute Summary collapse
-
#begin_col ⇒ Object
Returns the value of attribute begin_col.
-
#end_col ⇒ Object
Returns the value of attribute end_col.
Instance Method Summary collapse
-
#initialize(firstcol, lastcol) ⇒ Cline
constructor
A new instance of Cline.
Constructor Details
#initialize(firstcol, lastcol) ⇒ Cline
Returns a new instance of Cline.
123 124 125 126 |
# File 'lib/latex_table.rb', line 123 def initialize(firstcol, lastcol) @begin_col = firstcol @end_col = lastcol end |
Instance Attribute Details
#begin_col ⇒ Object
Returns the value of attribute begin_col.
121 122 123 |
# File 'lib/latex_table.rb', line 121 def begin_col @begin_col end |
#end_col ⇒ Object
Returns the value of attribute end_col.
121 122 123 |
# File 'lib/latex_table.rb', line 121 def end_col @end_col end |