Method: Prawn::Document#margin_box
- Defined in:
- lib/features2cards/prawn.rb
#margin_box(margin, &block) ⇒ Object
31 32 33 34 35 |
# File 'lib/features2cards/prawn.rb', line 31 def margin_box(margin, &block) bounding_box [bounds.left + margin, bounds.top - margin], :width => bounds.width - (margin * 2), :height => bounds.height - (margin * 2), &block end |