class Origami::Destination::VerticalBoundingBoxFit

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

Public Class Methods

[](page, left: 0) click to toggle source

Creates a new vertical bounding box fit Destination.

page

The destination Page.

left

The horizontal coord.

# File lib/origami/destinations.rb, line 233
def self.[](page, left: 0)
    self.new([page, :FitBV, left])
end
new(array) click to toggle source
Calls superclass method Origami::Array::new
# File lib/origami/destinations.rb, line 222
def initialize(array)
    super(array)

    @page, _, @left = array
end