Difference between revisions of "Printer.newPage"
From ComputerCraft Wiki
(Undo revision 3198 by 99.195.16.60 (talk)) |
m (Moved to CAT:LuaCoreFunctions) |
||
Line 14: | Line 14: | ||
}} | }} | ||
}} | }} | ||
+ | |||
+ | [[Category:Lua_Core_Functions]] |
Revision as of 18:50, 28 November 2012
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 | none |
Examples
Example | |
Creates a new page. | |
Code |
print(printer.newPage()) |
Output | true if the page creation was successful, otherwise false |