Console Functions

Procedures that work with the console.

Description
	These procedures provide ways to output text to the console, as well as 
	control where and how text is output.

#CONFIGConfiguring the Console
	Statements that affect how text is displayed.
#CURPOSCursor Color and Positioning
	Procedures that move the cursor and change its color.
#WRITINGWriting Text to the Console
	Procedures that output text to the console.

CONFIGConfiguring the Console
	KeyPgClsCls
		Clears the entire screen or text viewport.
	KeyPgWidthWidth
		Sets or returns the number of rows and columns of the console 
		display.
	KeyPgViewtextView Print
		Sets the printable area of the console screen.

CURPOSCursor Color and Positioning
	KeyPgColorColor
		Changes the foreground and background color of text to be written.
	KeyPgCsrlinCsrLin
		Returns the row position of the cursor.
	KeyPgPosPos
		Returns the column position of the cursor.
	KeyPgLocateLocate
		Sets the row and column position of the cursor and its visibility.
	KeyPgScreenConsScreen (Console)
		Gets the character or color attribute at a given location.
WRITINGWriting Text to the Console
	KeyPgPrintPrint
	KeyPgPrint? (Shortcut For 'Print')
		Writes text to the console.
	KeyPgPrintusingPrint Using
	KeyPgPrintusing? Using (Shortcut For 'Print Using')
		Writes formatted text to the console.
	KeyPgWriteWrite
		Writes a list of items to the console.
	KeyPgSpcSpc
		Skips a number of spaces when writing text.
	KeyPgTabTab
		Skips to a certain column when writing text.

