Class: Origami::Destination::HorizontalFit

Inherits:
Origami::Destination show all
Defined in:
lib/origami/destinations.rb

Overview

Class representing a Destination fitting a Page horizontally.

Constant Summary

Constants inherited from Array

Array::TOKENS

Constants included from Object

Object::TOKENS

Instance Attribute Summary

Attributes inherited from Origami::Destination

#bottom, #left, #page, #right, #top, #zoom

Attributes inherited from Array

#names_cache, #strings_cache, #xref_cache

Attributes included from Object

#file_offset, #generation, #no, #objstm_offset, #parent

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Origami::Destination

GlobalBoundingBoxFit, GlobalFit, HorizontalBoudingBoxFit, HorizontalFit, RectangleFit, VerticalBoundingBoxFit, VerticalFit, Zoom

Methods inherited from Array

#+, #<<, #[]=, #cast_to, #concat, #copy, of, parse, #pre_build, #to_a, #to_obfuscated_str, #to_s

Methods included from Object

#<=>, #cast_to, #copy, #document, #export, included, #indirect?, #indirect_parent, #logicalize, #logicalize!, #native_type, parse, #post_build, #pre_build, #reference, #set_document, #set_indirect, skip_until_next_obj, #solve, #to_o, #to_s, #type, typeof, #version_required, #xrefs

Constructor Details

#initialize(array) ⇒ HorizontalFit

Returns a new instance of HorizontalFit.



101
102
103
104
105
# File 'lib/origami/destinations.rb', line 101

def initialize(array)
    super(array)

    @page, _, @top = array
end

Class Method Details

.[](page, top: 0) ⇒ Object

Creates a new horizontal fit destination.

page

The destination Page.

top

The vertical coord in the Page.



112
113
114
# File 'lib/origami/destinations.rb', line 112

def self.[](page, top: 0)
    self.new([page, :FitH, top])
end