printer.setPageTitle
From ComputerCraft Wiki
| Sets the title of the page. This title is seen when you hover your mouse over the page in the inventory. | |
| Syntax | printer.setPageTitle(string title) |
| Returns | nil |
| Part of | ComputerCraft |
| API | printer |
Examples
| Set the title of a page to be printed. | |
| Code |
local printer = peripheral.wrap("left") printer.newPage() printer.setPageTitle("My page title") printer.endPage() |