Api/dev.printfile(): Difference between revisions

From Minux Wiki
Jump to navigation Jump to search
(Created page with "this function is part of the dev. api and used to print a file to a printer device. '''usage:''' dev.printfile(filepath) '''output:''' prints the contents of the provided file, splits it up into several pages, does NOT format the text to fit the pages, simply prints it.")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
'''usage:'''
'''usage:'''


dev.printfile(filepath)
dev.printfile(filepath, title)




Line 12: Line 12:


prints the contents of the provided file, splits it up into several pages, does NOT format the text to fit the pages, simply prints it.
prints the contents of the provided file, splits it up into several pages, does NOT format the text to fit the pages, simply prints it.
sets title as the prints title
'''example:'''
dev.printfile("/test") splits the file "/test" into pages and prints them

Latest revision as of 23:13, 8 October 2024

this function is part of the dev. api and used to print a file to a printer device.


usage:

dev.printfile(filepath, title)


output:

prints the contents of the provided file, splits it up into several pages, does NOT format the text to fit the pages, simply prints it.

sets title as the prints title


example:

dev.printfile("/test") splits the file "/test" into pages and prints them