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

Class representing a Destination fitting a Page horizontally.

Methods

new  

Included Modules

Destination

Public Class methods

Creates a new horizontal fit destination.

pageref:A Reference to a Page.
top:The vertical coord in the Page.

[Source]

    # File sources/parser/destinations.rb, line 89
89:       def initialize(pageref, top = 0, indirect = false)
90:         
91:         @top = top
92:         super([pageref, :FitH, top], indirect)
93:         
94:       end

[Validate]