Define the outlines in the doc, empty for now
# File lib/pdf/writer/object/outline.rb, line 22 def to_s pos = @parent.outlines.list.index(self) res = "\n#{@oid} 0 obj\n<< /Title (#{@title})" res << " /Prev #{@parent.outlines.list[pos - 1].oid} 0 R" if pos.nonzero? res << " /Next #{@parent.outlines.list[pos + 1].oid} 0 R" if @oid != parent.outlines.list[-1].oid res << " /A #{@action.oid} 0 R>>\nendobj" res end
Generated with the Darkfish Rdoc Generator 2.