Class MoveCursor
A class that represents a VHI MoveCursor command.
Inherited Members
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI.Command
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
[Serializable]
public class MoveCursor : Command
Constructors
MoveCursor(int, int)
Constructs a new MoveCursor command.
Declaration
public MoveCursor(int row, int column)
Parameters
Type | Name | Description |
---|---|---|
int | row | one-based vertical position of the cursor (CURRENT_ROW means the current cursor row). |
int | column | one-based horizontal position of the cursor (CURRENT_COLUMN means the current cursor column). |
See Also
Properties
Column
Gets the cursor column.
Declaration
public virtual int Column { get; }
Property Value
Type | Description |
---|---|
int | one-based horizontal position of the cursor (CURRENT_COLUMN means the current cursor 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 cursor row.
Declaration
public virtual int Row { get; }
Property Value
Type | Description |
---|---|
int | one-based vertical position of the cursor (CURRENT_ROW means the current cursor row). |