class MonoclePrint::ColumnLayout
Public Class Methods
new( columns, options = {} ) { |self| ... }
click to toggle source
Calls superclass method
MonoclePrint::Table::new
# File lib/monocle-print/table.rb, line 218 def initialize( columns, options = {} ) super( columns, options ) do @item = @head = Blank.new( self ) @foot = Blank.new( self ) @style = Style( :blank ) block_given? and yield( self ) end end