1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
# encoding: utf-8
#
# <code>Prawn::Table#initialize</code> takes a
# <code>:before_rendering_page</code> argument, to adjust the way an entire page
# of table cells is styled. This allows you to do things like draw a border
# around the entire table as displayed on a page.
#
# The callback is passed a Cells object that is numbered based on the order of
# the cells on the page (e.g., the first row on the page is
# <code>cells.row(0)</code>).
#
require File.expand_path(File.join(File.dirname(__FILE__),
%w[.. example_helper]))
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
table([["foo", "bar", "baz"]] * 40) do |t|
t.cells.border_width = 1
t.before_rendering_page do |page|
page.row(0).border_top_width = 3
page.row(-1).border_bottom_width = 3
page.column(0).border_left_width = 3
page.column(-1).border_right_width = 3
end
end
end
|