Class: Prawn::OutlineRoot

Inherits:
Object
  • Object
show all
Defined in:
lib/prawn/outline.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeOutlineRoot

Returns a new instance of OutlineRoot.



293
294
295
# File 'lib/prawn/outline.rb', line 293

def initialize
  @count = 0
end

Instance Attribute Details

#countObject

Returns the value of attribute count.



291
292
293
# File 'lib/prawn/outline.rb', line 291

def count
  @count
end

#firstObject

Returns the value of attribute first.



291
292
293
# File 'lib/prawn/outline.rb', line 291

def first
  @first
end

#lastObject

Returns the value of attribute last.



291
292
293
# File 'lib/prawn/outline.rb', line 291

def last
  @last
end

Instance Method Details

#to_hashObject



297
298
299
# File 'lib/prawn/outline.rb', line 297

def to_hash
  {:Type => :Outlines, :Count => count, :First => first, :Last => last}
end