Class: LatexTools::LatexTable::Cline

Inherits:
Object
  • Object
show all
Defined in:
lib/latex_table.rb

Overview

:nodoc: all

Instance Attribute Summary collapse

Instance Method Summary collapse

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_colObject

Returns the value of attribute begin_col.



121
122
123
# File 'lib/latex_table.rb', line 121

def begin_col
  @begin_col
end

#end_colObject

Returns the value of attribute end_col.



121
122
123
# File 'lib/latex_table.rb', line 121

def end_col
  @end_col
end