Class WaitForCursorAtTerminalField
A class that represents a VHI WaitForCursorAtTerminalField command.
Inherited Members
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI.Command
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
[Serializable]
public class WaitForCursorAtTerminalField : Command
Constructors
WaitForCursorAtTerminalField(int, int, int)
Constructs a new WaitForCursorAtTerminalField command.
Declaration
public WaitForCursorAtTerminalField(int row, int column, int timeout)
Parameters
Type | Name | Description |
---|---|---|
int | row | the one-based screen row (ANY_ROW matches any row) |
int | column | the one-based screen column (ANY_COLUMN matches any column) |
int | timeout | the maximum time to wait in seconds |
See Also
Properties
Column
Gets the column.
Declaration
public virtual int Column { get; }
Property Value
Type | Description |
---|---|
int | the one-based screen column (ANY_COLUMN matches any column) |
See Also
Name
Gets the command name.
Declaration
public override string Name { get; }
Property Value
Type | Description |
---|---|
string | the command name |
Overrides
See Also
Row
Gets the row.
Declaration
public virtual int Row { get; }
Property Value
Type | Description |
---|---|
int | the one-based screen row (ANY_ROW matches any row) |
See Also
Timeout
Gets the timeout.
Declaration
public virtual int Timeout { get; }
Property Value
Type | Description |
---|---|
int | the maximum time to wait in seconds |