TTelnetShell
From Ultibo.org
Return to Unit RemoteShell
Description
To be documented
Class definitions
[Expand]
TTelnetShell = class(TShell)
Function declarations
[Expand]
procedure TTelnetShell.MoveFirst(ASession:TTelnetSession);
Description: Move the cursor to the starting position of the line
[Expand]
procedure TTelnetShell.MoveLeft(ASession:TTelnetSession);
Description: Move the cursor one position to the left in the line
[Expand]
procedure TTelnetShell.MoveRight(ASession:TTelnetSession);
Description: Move the cursor one position to the right in the line
[Expand]
procedure TTelnetShell.EraseLine(ASession:TTelnetSession);
Description: Erase all characters in the line and reset the cursor position
[Expand]
procedure TTelnetShell.OutputLine(ASession:TTelnetSession; const AValue:String);
Description: Output all characters in value and update the cursor position
[Expand]
function TTelnetShell.ExpandLine(ASession:TTelnetSession):Boolean;
Description: Expand the tab key to a command completion if available
[Expand]
procedure TTelnetShell.EraseCharacter(ASession:TTelnetSession);
Description: Erase the character to the left of the cursor position
[Expand]
procedure TTelnetShell.DeleteCharacter(ASession:TTelnetSession);
Description: Delete the character to the right of the cursor position
[Expand]
procedure TTelnetShell.InsertCharacter(ASession:TTelnetSession; ACh:Char);
Description: Insert a character at the cursor position
[Expand]
procedure TTelnetShell.OverwriteCharacter(ASession:TTelnetSession; ACh:Char);
Description: Overwrite the character at the cursor position
[Expand]
procedure TTelnetShell.PrevHistory(ASession:TTelnetSession);
Description: Get the previous command history value
[Expand]
procedure TTelnetShell.NextHistory(ASession:TTelnetSession);
Description: Get the next command history value
[Expand]
procedure TTelnetShell.CurrentHistory(ASession:TTelnetSession);
Description: Get the current command history value
[Expand]
procedure TTelnetShell.TelnetConnected(AConnection:TTelnetConnection);
Description: To be documented
[Expand]
procedure TTelnetShell.TelnetDisconnected(AConnection:TTelnetConnection);
Description: To be documented
[Expand]
function TTelnetShell.TelnetInit(AConnection:TTelnetConnection):Boolean;
Description: To be documented
[Expand]
function TTelnetShell.TelnetChar(AConnection:TTelnetConnection; AChar:Char):Boolean;
Description: To be documented
[Expand]
function TTelnetShell.TelnetCommand(AConnection:TTelnetConnection; ACommand,AOption:Byte; AData:Pointer; ASize:LongWord):Boolean;
Description: To be documented
[Expand]
function TTelnetShell.DoClear(ASession:TShellSession):Boolean;
Description: To be documented
[Expand]
function TTelnetShell.DoInput(ASession:TShellSession; var AInput:String):Boolean;
Description: To be documented
[Expand]
function TTelnetShell.DoOutputEx(ASession:TShellSession; const AOutput:String; AReturn:Boolean):Boolean;
Description: To be documented
[Expand]
function TTelnetShell.MatchSequence(const ASequence:String; var AContinue:Boolean):Boolean;
Description: To be documented
[Expand]
function TTelnetShell.ProcessSequence(const ASequence:String):Boolean;
Description: To be documented
Return to Unit Reference