.NET ScriptAPI Method Reference

.NET ScriptAPI Method Reference

Show / Hide Table of Contents
  • Attachmate.Verastream.HostIntegrator.ScriptAPI
    • AppConnAidKey
    • ApptrieveException
    • AttributeEventHandler
    • ColumnType
    • ColumnValue
    • ContextType
    • CursorPosition
    • DescriptionAttribute
    • EchoType
    • EntityEventHandler
    • ErrorMessage
    • EventHandlerConstant
    • EventHandlerType
    • EventInfo
    • EventTimeoutException
    • FieldEventHandler
    • HostColor
    • HostFont
    • IApplyFilterEvent
    • IAttributeEvent
    • IAttributeMetaData
    • IAuthenticateUserEvent
    • IClientConnectedEvent
    • IClientDisconnectedEvent
    • IClientSession
    • IClientSessionCreatedEvent
    • IClientSessionDestroyedEvent
    • IColumnMetaData
    • IEntityArrivalEvent
    • IEntityDepartureEvent
    • IEntityEvent
    • IEntityMoveCursorEvent
    • IErrorReportedEvent
    • IEvent
    • IEventHandler
    • IExecuteLoginEvent
    • IExecuteLogoutEvent
    • IExecuteOperationEvent
    • IExecuteProcedureEvent
    • IFieldEvent
    • IFieldLocation
    • IFieldMetaData
    • IFormatErrorEvent
    • IGetCurrentHostRecordEvent
    • IGetRecordTypeEvent
    • IHostSession
    • IHostSessionCreatedEvent
    • IHostSessionDestroyedEvent
    • IHostSessionEvent
    • IInsertRecordEvent
    • IIsTerminatedEvent
    • ILifeCycleEvent
    • ILinearTerminalRegion
    • ILogger
    • IMetaData
    • IModelContext
    • IModelCursorEvent
    • IModelEvent
    • IModelLoadedEvent
    • IModelMoveCursorBackwardEvent
    • IModelMoveCursorEvent
    • IModelMoveCursorForwardEvent
    • IModelRecord
    • IModelRecordSet
    • IModelUnloadedEvent
    • IMutableProcedureRecord
    • IMutableProcedureRecordSet
    • IOperationMetaData
    • IParseRecordEvent
    • IParseScreenEvent
    • IProcedureMetaData
    • IProcedureParameters
    • IProcedureRecord
    • IProcedureRecordSet
    • IProcessStringEvent
    • IReadAttributeEvent
    • IReadFieldEvent
    • IRecord
    • IRecordEvent
    • IRecordLocation
    • IRecordSet
    • IRecordSetContext
    • IRecordSetEvent
    • IRecordSetMetaData
    • IRecordSetScreen
    • IRectangularTerminalRegion
    • IScriptHostSession
    • ITerminalAttributes
    • ITerminalCell
    • ITerminalRegion
    • IUnrecognizedScreenEvent
    • IUpdateRecordEvent
    • IVariableMetaData
    • IWriteAttributeEvent
    • IWriteAttributesEvent
    • IWriteFieldEvent
    • IndexValue
    • LifeCycleEventHandler
    • MetaDataType
    • ModelEventHandler
    • OperationEventHandler
    • ProcedureEventHandler
    • ProcedureType
    • RecordSetEventHandler
    • RecordType
    • RegionType
    • RowValue
    • ScreenSize
    • ScrollDirection
    • ScrollMovement
    • TimeoutAttribute
    • VariableInitialization
    • VariableKind
  • Attachmate.Verastream.HostIntegrator.ScriptAPI.Command
    • CheckOperationConditions
    • Command
    • DefaultValue
    • MoveCursor
    • Navigate
    • ReadFromMappedAttribute
    • ReadVariableFromAttribute
    • ReadVariableFromField
    • ReadVariableFromLocation
    • ReadVariableFromTerminal
    • ResetRecordSet
    • Transmit
    • TransmitTerminalKey
    • TransmitToAttribute
    • TransmitToField
    • TransmitToLocation
    • TransmitToOffset
    • UpdateAttribute
    • UpdateAttributes
    • UpdateRecordSetField
    • UpdateRecordSetFields
    • WaitForCommString
    • WaitForCondition
    • WaitForCursorAtAttribute
    • WaitForCursorAtLocation
    • WaitForCursorAtRecordSetField
    • WaitForCursorAtTerminalField
    • WaitForCursorNotAtLocation
    • WaitForCursorNotAtTerminalField
    • WaitForDisplayString
    • WaitForHostSilence
    • WaitForKeyboardEnabled
    • WaitForMultipleEvents
    • WaitForNewHostScreen
    • WaitForUpdate
    • WaitMS
    • WriteToMappedAttribute
    • WriteVariableToAttribute
    • WriteVariableToField
    • WriteVariableToLocation
    • WriteVariableToTerminal
  • WRQ.Verastream.HostIntegrator
    • RcConst

Class WaitForDisplayString

A class that represents a VHI WaitForDisplayString command.

Inheritance
object
Command
WaitForDisplayString
Inherited Members
Command.isValidEchoType(int)
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Namespace: Attachmate.Verastream.HostIntegrator.ScriptAPI.Command
Assembly: Attachmate.Verastream.HostIntegrator.ScriptAPI.dll
Syntax
[Serializable]
public class WaitForDisplayString : Command

Constructors

WaitForDisplayString(string, int, int, int, bool)

Constructs a new WaitForDisplayString command

Declaration
public WaitForDisplayString(string text, int timeout, int row, int column, bool relativeToCursor)
Parameters
Type Name Description
string text

the text to wait to appear

int timeout

the timeout in seconds

int row

if relativeToCursor is true, the offset to the cursor row; otherwise, the one-based screen row (ANY_ROW matches any row)

int column

if relativeToCursor is true, the offset to the cursor column; otherwise, the one-based screen column (ANY_COLUMN matches any column)

bool relativeToCursor

true if the row and column should be interpreted as offsets from the cursor position

See Also
ExecuteCommandList(IList<Command>)
WaitForDisplayString(string, int, int, bool, int)

Properties

Column

Gets the column.

Declaration
public virtual int Column { get; }
Property Value
Type Description
int

if RelativeToCursor is true, the offset to the cursor column; otherwise, the one-based screen column (ANY_COLUMN matches any column)

See Also
ExecuteCommandList(IList<Command>)
WaitForDisplayString(string, int, int, bool, int)

Name

Gets the command name.

Declaration
public override string Name { get; }
Property Value
Type Description
string

the command name

Overrides
Command.Name
See Also
ExecuteCommandList(IList<Command>)
WaitForDisplayString(string, int, int, bool, int)

RelativeToCursor

Gets the relative to cursor flag.

Declaration
public virtual bool RelativeToCursor { get; }
Property Value
Type Description
bool

true if the Row and Column should be interpreted as offsets from the cursor position

See Also
ExecuteCommandList(IList<Command>)
WaitForDisplayString(string, int, int, bool, int)

Row

Gets the row.

Declaration
public virtual int Row { get; }
Property Value
Type Description
int

if RelativeToCursor is true, the offset to the cursor row; otherwise, the one-based screen row (ANY_ROW matches any row)

See Also
ExecuteCommandList(IList<Command>)
WaitForDisplayString(string, int, int, bool, int)

Text

Gets the text to wait to appear.

Declaration
public virtual string Text { get; }
Property Value
Type Description
string

the text to wait to appear

See Also
ExecuteCommandList(IList<Command>)
WaitForDisplayString(string, int, int, bool, int)

Timeout

Gets the wait timeout.

Declaration
public virtual int Timeout { get; }
Property Value
Type Description
int

the timeout in seconds

See Also
ExecuteCommandList(IList<Command>)
WaitForDisplayString(string, int, int, bool, int)

See Also

ExecuteCommandList(IList<Command>)
WaitForDisplayString(string, int, int, bool, int)
In This Article
Back to top © 1985-2024 Rocket Software, Inc. or its affiliates. All Rights Reserved