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
54 def initialize(title = nil)
55   @title = title
56   yield self if block_given?
57 end