class Origami::Destination::VerticalBoundingBoxFit

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

Public Class Methods

new(pageref, left = 0) click to toggle source

Creates a new vertical bounding box fit Destination.

pageref

A Reference to a Page.

left

The horizontal coord.

Calls superclass method Origami::Array.new
# File lib/origami/destinations.rb, line 202
def initialize(pageref, left = 0)
  
  @left = left
  super([pageref, :FitBV, left])

end