-
Notifications
You must be signed in to change notification settings - Fork 8
Debug
lainz edited this page Jul 22, 2016
·
3 revisions
#Debug.Clear Clears the contents of the debug window.
Debug.Clear()
#Debug.Print Appends text to the bottom of the debug window.
Debug.Print("Hello debug window")
#Debug.SendToFile Saves the debug window content to a text file.
Parameters: Filename, Overwrite
Debug.SendToFile("C:\\temp\\debug.txt", true)
#Debug.ShowWindow Shows or hides the debug window.
-- show the window
Debug.ShowWindow(true)
-- hide the window
Debug.ShowWindow(false)