class PDF::SimpleTable::Column::Heading
Formatting options for heading rows. Each column can have a separate heading value.
Attributes
bold[RW]
Indicates that the heading should be rendered bold.
justification[RW]
The justification of the heading of the column. May be :left, :center, :right, or :full.
title[RW]
The title of the heading. If nothing is present, the name of the column will be used when headings are displayed.
Public Class Methods
new(title = nil) { |self| ... }
click to toggle source
# File lib/pdf/simpletable.rb, line 53 def initialize(title = nil) @title = title yield self if block_given? end