| Class | Origami::Destination::HorizontalBoudingBoxFit |
| In: |
sources/parser/destinations.rb
|
| Parent: | Origami::Array |
Class representing a Destination fitting horizontally the bouding box a Page.
Creates a new horizontal bounding box fit Destination.
| pageref: | A Reference to a Page. |
| top: | The vertical coord. |
# File sources/parser/destinations.rb, line 166
166: def initialize(pageref, top = 0, indirect = false)
167:
168: @top = top
169: super([pageref, :FitBH, top], indirect)
170:
171: end