Class ReadVariableFromLocation
A class that represents a VHI ReadVariableFromLocation command.
Inherited Members
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI.Command
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
[Serializable]
public class ReadVariableFromLocation : Command
Constructors
ReadVariableFromLocation(string, int, int, int)
Constructs a new ReadVarFromLocation command.
Declaration
public ReadVariableFromLocation(string variable, int row, int column, int length)
Parameters
| Type | Name | Description |
|---|---|---|
| string | variable | the variable name |
| int | row | the one-based row |
| int | column | the one-based column |
| int | length | the number of characters to read |
See Also
Properties
Column
Gets the column.
Declaration
public virtual int Column { get; }
Property Value
| Type | Description |
|---|---|
| int | the one-based column |
See Also
Length
Gets the length.
Declaration
public virtual int Length { get; }
Property Value
| Type | Description |
|---|---|
| int | the length |
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 row |
See Also
Variable
Gets the variable name.
Declaration
public virtual string Variable { get; }
Property Value
| Type | Description |
|---|---|
| string | the variable name |