Application
Web
Session
Var
MonkeyTerm Object Model
Object: VT100Parser
This object is responsible for translating the incomming and outgoing telnet commands and ANSI codes.
Function IsLogging([WithANSI As Boolean = False]) As Boolean Will return a boolean value depending on the current log-status.
Sub SetLogInfo([FileName As String], [StartLog As Boolean = True], [WithANSI As Boolean = False]) Starts or stop logging. Use this sub with care, as it's not 100% foolproof when calling directly (if it looks like it's working then it probably is - but some combinations may cause errors). Use the menus instead to ensure safe logging.
Function WriteString(byval Ansi As String) As String Puts the string onto the terminal window and into the log files. The string is first parsed for ANSI codes.
Property LocalEcho() As Boolean Reads or writes the value of the local echo. When set all typed text in the terminal window will show, turning it off can protect against someone snooping you typing your password etc.
Property GagEmptyLines() As Boolean When set, all empty lines will be gagged (not printet on the terminal).
Property TabWidth() As Long Defines the tab-width. Default value is 8 spaces.
Property DefaultColor() As Byte Defines the colorindex to be used for normal text. Default value is 7, and default color of index 7 is gray.
|