Defines formatting options for a column.
The heading of the column. This should be an instance of PDF::SimpleTable::Column::Heading. If it is not, it will be converted into one.
The justification of the column. May be :left, :right, :center, or :full.
The data name that will be used to provide a hyperlink for values in this column.
The name of the column.
The width of the column. If this value is set, the column will be exactly this number of units wide.
# File lib/pdf/simpletable.rb, line 22 def initialize(name) @name = name yield self if block_given? end