Class WriteVariableToField
A class that represents a VHI WriteVariableToField command.
Inherited Members
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI.Command
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
[Serializable]
public class WriteVariableToField : Command
Constructors
WriteVariableToField(string, string, string)
Constructs a new WriteVarToField command.
Declaration
public WriteVariableToField(string recordSet, string field, string variable)
Parameters
Type | Name | Description |
---|---|---|
string | recordSet | name of recordset on current entity containing the field to be written to |
string | field | name of field to be written to |
string | variable | name of variable containing value to be written |
See Also
Properties
Field
Gets the field name.
Declaration
public virtual string Field { get; }
Property Value
Type | Description |
---|---|
string | name of field to be written to |
See Also
Name
Gets the command name.
Declaration
public override string Name { get; }
Property Value
Type | Description |
---|---|
string | the command name |
Overrides
See Also
RecordSet
Gets the record set name.
Declaration
public virtual string RecordSet { get; }
Property Value
Type | Description |
---|---|
string | name of recordset on current entity containing the field to be written to |
See Also
Variable
Gets the variable name.
Declaration
public virtual string Variable { get; }
Property Value
Type | Description |
---|---|
string | name of variable containing value to be written |