[This is preliminary documentation and is subject to change.]
Builds an ANSI-BBS escape code that moves the cursor.
Namespace: Thought.Terminals
Assembly: Thought.Terminals (in Thought.Terminals.dll)
Version: 0.1.0.0
Syntax
| C# |
|---|
public string MoveCursor( int column, int row ) |
| Visual Basic (Declaration) |
|---|
Public Function MoveCursor ( _ column As Integer, _ row As Integer _ ) As String |
| Visual C++ |
|---|
public: virtual String^ MoveCursor ( int column, int row ) sealed |
Parameters
- column
- Int32
The zero-based column number.
- row
- Int32
The zero-based row number.
Return Value
An X3.64 escape code that moves the cursor to the specified column and row. Note that X3.64 coordinates are one-based, not zero-based.
See Also
AnsiTerminalProtocol Class
Thought.Terminals Namespace