Back to product page
- Introduction
- License agreement
- Getting Started
- Enumerations
- Objects
- wodTelnetDLX
- Methods
- Properties
- Authentication
- AutoSize
- BackColor
- BackLog
- BindIP
- BindPort
- Blocking
- BorderVisible
- Certificate
- CharEncoding
- Column
- Columns
- ColWidth
- Command
- ContextMenu
- CursorHeight
- DataOut
- DataReady
- Enabled
- ErrorText
- ExitSignal
- ExitStatus
- Font
- ForeColor
- HandleSysKeys
- Hostname
- hWnd
- KeepAlives
- Language
- LastError
- LocalCertBag
- Login
- MousePointer
- MouseWheel
- MyHostname
- MyIP
- Notification
- Password
- Picture
- Port
- Prompt
- Protocol
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- RecordMode
- RemoteIdentification
- Row
- RowHeight
- Rows
- ScrollBars
- ScrollX
- ScrollY
- SecureMethod
- SelectedText
- ShowCursor
- Socket
- SpecialKeyFocus
- State
- StateText
- StripANSI
- StripColors
- TabStop
- TelnetOption
- TerminalEmulation
- TerminalType
- Text
- Timeout
- TranslateSpecial
- UseIPv6
- Version
- Events
- IwodTelnetNotify
- wodTelnetDLX
- How to get support?
- Technical information
- Fast notifications interface
- Error list
Text property
Returns line(s) of text from terminal screen.
Type
StringSyntax
- Basic
object.Text ([Index])
The Text(object,Index) syntax has these parts:
The Text(object,Index) syntax has these parts:
object | An expression evaluating to an object of type wodTelnetDLX |
Index | Optional. A Variant value. Determines line number that should be set/retrieved. |
Remarks
Text property will return (or set) one line from screen buffer to string variable. If Index argument is specified, then only specified line is returned. If Index is not specified, then full screen buffer is returned without backlog buffer.If you wish to retrieve backlog buffer lines, you can specify Index argument less than zero, in which case -1 would be first line (just above topmost currently visible), -2 would be second etc.. If Index argument is positive integer, then you will retrieve line from currently visible screen.
Just as is with retrieving lines from screen, you can also set it by writing to this property. For example:
Debug.Print wodTelnetDLX.Text (2)
will get 3rd line of text from visible screen. If you do
Debug.Print wodTelnetDLX.Text (-1)
you will get first line from backlog buffer (just one above topmost line). If you do
Debug.Print wodTelnetDLX.Text
you will get full screen (no scroll buffer).