Class Origami::Destination::VerticalBoundingBoxFit
In: sources/parser/destinations.rb
Parent: Origami::Array

Class representing a Destination fitting vertically the bounding box of a Page.

Methods

new  

Included Modules

Destination

Public Class methods

Creates a new vertical bounding box fit Destination.

pageref:A Reference to a Page.
left:The horizontal coord.

[Source]

     # File sources/parser/destinations.rb, line 187
187:       def initialize(pageref, left = 0, indirect = false)
188:         
189:         @left = left
190:         super([pageref, :FitBV, left], indirect)
191:       
192:       end

[Validate]