Get and set page information for the current Graphlet page.

DESCRIPTION:

Get or set the tag or title of the current page in the current Graphlet or Java graphics device.

USAGE:

java.get.page.tag()
java.set.page.tag(tag)
java.get.page.title()
java.set.page.title(name)

REQUIRED ARGUMENTS:

tag
a character string; used to identify the page in page action strings, such as those generated by the java.action.page function.
name
a character string; this title is displayed in the page's tab. If the this argument is the string "#", the tab displays an auto-generated string such as "Page 3."

VALUE:

Returns the current settings for the java.get.page functions.

SIDE EFFECTS:

None.

SEE ALSO:

, .

EXAMPLES:

# Create a Java Graphlet having 2 pages
java.graph(file="mygraphlet.spj", format="SPJ")
plot(corn.rain)
java.set.page.title("Corn")
java.set.page.tag("corn.rain")
plot(fuel.frame$Weight, fuel.frame$Mileage)
java.set.page.title("Fuel")
java.set.page.tag("fuel.frame")
dev.off()

# Create a Java graph having 3 pages
java.graph()
{ plot(corn.rain); java.set.page.title("Corn");
  plot(corn.yield); java.set.page.title("Yield"); 
  plot(corn.rain, corn.yield); java.set.page.title("Yield v Rain"); }