Interface ITerminalRegion
Provides information about a region of the terminal screen.
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
public interface ITerminalRegion
Properties
Length
Gets the number of characters contained within the region.
Declaration
int Length { get; }
Property Value
| Type | Description |
|---|---|
| int | the number of characters in the region |
Text
Gets the text contents of the region.
Declaration
string Text { get; }
Property Value
| Type | Description |
|---|---|
| string | the text contents |
Methods
GetTerminalCell(int)
Gets additional information about a single character within this screen region as a separate immutable object.
Declaration
ITerminalCell GetTerminalCell(int offset)
Parameters
| Type | Name | Description |
|---|---|---|
| int | offset | zero-based offset of character from the start of the region |
Returns
| Type | Description |
|---|---|
| ITerminalCell |
|