Interface IFieldLocation
Specifies the location of a field within a recordset record.
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
public interface IFieldLocation
Remarks
Specifies the location of a field within a recordset record. See IParseRecordEvent.
Properties
FieldRegion
Gets the current location, size and contents of the field within the record.
Declaration
ITerminalRegion FieldRegion { get; }
Property Value
| Type | Description |
|---|---|
| ITerminalRegion | The contents of the record. |
Methods
SetFieldRegion(int, int)
Changes the location and size of the field within the record using linear coordinates.
Declaration
ILinearTerminalRegion SetFieldRegion(int offset, int length)
Parameters
| Type | Name | Description |
|---|---|---|
| int | offset | The zero-based offset from the beginning of the record. |
| int | length | The length of the field. |
Returns
| Type | Description |
|---|---|
| ILinearTerminalRegion | The new ITerminalRegion for the field. |
Exceptions
| Type | Condition |
|---|---|
| ApptrieveException | Throws an exception if the region is invalid. |