"setCurrentPage"

Displays the given month of the given year without changing the selected date.

Synopsis

shape.setCurrentPage(int year, int month);

Parameters

Parameter Description
shape Name of the object
year The year, which shall be displayed.
month The month, which shall be displayed.

Description

This function displays the given month of the given year without changing the selected date.

Example

main()
{
  Calendar.setCurrentPage(2008, 9);
}

Assignment

Calendar