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

Class representing a Destination fitting a Page vertically.

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

Methods

new  

Included Modules

Destination

Public Class methods

[Source]

     # File sources/parser/destinations.rb, line 107
107:       def initialize(pageref, left = 0, indirect = false)
108:         
109:         @left = left
110:         super([pageref, :FitV, left], indirect)
111:         
112:       end

[Validate]