printer.newPage
From ComputerCraft Wiki
Revision as of 13:48, 30 November 2012 by AfterLifeLochie (Talk | contribs) (Corrected mapping from "Boolean" to "Boolean (type)")
Function printer.newPage | |
Creates a new page to be printed. | |
Syntax | printer.newPage(none) |
Returns | boolean If the page creation was successful. |
Part of | ComputerCraft |
API | printer |
Examples
Example | |
Creates a new page. | |
Code |
print(printer.newPage()) |
Output | true if the page creation was successful, otherwise false |