Difference between revisions of "Printer.endPage"
From ComputerCraft Wiki
(Corrected mapping from "Boolean" to "Boolean (type)") |
(Please do not change categories without confirming with me first.) |
||
Line 15: | Line 15: | ||
}} | }} | ||
− | [[Category: | + | [[Category:Lua_Core_Functions]] |
Revision as of 00:44, 1 December 2012
Function printer.endPage | |
Terminates and prints the page loaded. | |
Syntax | printer.endPage(none) |
Returns | boolean If the page termination was successful. |
Part of | ComputerCraft |
API | printer |
Examples
Example | |
Prints out the current page. | |
Code |
print(printer.endPage()) |
Output | true if the page printed successfully, otherwise false |