This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Page Control
next_page
It goes to the next page and resets the cursor values(recommended).
doc=RGhost::Document.new
doc.show "Page 1 row 1"
doc.next_page
doc.show "Page 2 row 1"
doc.next_page
doc.show "Page 3 row 1"
showpage
It goes to the next page without resetting the cursor values. Often used for single page documents.
doc=RGhost::Document.new
doc.show "Page 1 row 1"
doc.showpage # page 2, but internally page 1
doc.show "Page 1 row 1"
doc.showpage # page 3
doc.show "Page 1 row 1"






