API setprinthandler
Talk0
98,473pages on
this wiki
this wiki
This function is implemented by FrameXML in RestrictedEnvironment.lua.
Sets a new print() output handler function.
setprinthandler(func)
Arguments
Edit
- func
- Function - The function that will be called with all of print(...)'s arguments when print(...) is called. This function is responsible for converting the values into a form it can present to the user.
Details
Edit
- The default print handler, provided by blizzard, converts all arguments to strings, concatenates them separated by a single space character, and prints the resulting string to the default chat frame.