Class: Pdfrb::Destination::FitBoundingBoxVertical
- Defined in:
- lib/pdfrb/destination/fit.rb
Overview
/FitBV left — fit bounding box height, left at left.
Instance Attribute Summary collapse
-
#left ⇒ Object
readonly
Returns the value of attribute left.
Attributes inherited from Fit
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(page_ref, left: nil) ⇒ FitBoundingBoxVertical
constructor
A new instance of FitBoundingBoxVertical.
- #to_pdf ⇒ Object
Methods inherited from Fit
[], register, register_as, registry, types
Constructor Details
#initialize(page_ref, left: nil) ⇒ FitBoundingBoxVertical
Returns a new instance of FitBoundingBoxVertical.
170 171 172 173 |
# File 'lib/pdfrb/destination/fit.rb', line 170 def initialize(page_ref, left: nil) super(page_ref) @left = left end |
Instance Attribute Details
#left ⇒ Object (readonly)
Returns the value of attribute left.
168 169 170 |
# File 'lib/pdfrb/destination/fit.rb', line 168 def left @left end |
Class Method Details
.fit_keyword ⇒ Object
176 |
# File 'lib/pdfrb/destination/fit.rb', line 176 def fit_keyword; :FitBV; end |