Reflection .NET API
Attachmate.Reflection.Emulation.OpenSystems Assembly / Attachmate.Reflection.Emulation.OpenSystems Namespace / OnEventEventType Enumeration


In This Topic
    OnEventEventType Enumeration
    In This Topic
    Identifies the event which will trigger the commands specified the Commands argument.
    Syntax
    'Declaration
     
    
    Public Enum OnEventEventType 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As OnEventEventType
    public enum OnEventEventType : System.Enum 
    Members
    MemberDescription
    BlockModeEnterThe terminal has entered block mode.
    BlockModeExitThe terminal has exited block mode.
    CommStringDefines an event as the reception of the specified string from the host. Use the String argument to specify the string. Use 1 as the value for Row and Column; these arguments are not relevant for this type of event. Use CommString only if you are connecting to your IBM host through a gateway (such as UNIX) that uses streaming mode rather than block mode. (In streaming mode, incoming characters appear on screen in sequence, and existing lines of text scroll out of sight as new lines appear. In block mode, you see complete screen displays, beginning with the logon display screen.) If you are connecting directly to an IBM host, use DisplayString.
    DisplayStringThe string specified in the String argument appears on screen.
    EnterPosThe cursor has entered the position specified by the Row and Column arguments. Use an empty string ("") as the value for the String argument; this argument is not relevant for this type of event.
    EvConnectedA connection has been made to a host. Use an empty string ("") as the value of String, and 1 as the value for Row and Column; these arguments are not relevant for this type of event.
    EvDisconnectedReflection has disconnected from the host. Use an empty string ("") as the value of String, and 1 as the value for Row and Column; these arguments are not relevant for this type of event.
    ExitPosThe cursor has left the position specified by the Row and Column arguments. Use an empty string ("") as the value for the String argument; this argument is not relevant for this type of event.
    FileTransferDoneA file transfer has successfully completed.
    KbdEnabledDefines an event as the keyboard being unlocked for the specified duration. Use the String argument to specify an interval of time in HH:MM:SS.hh format.
    LoadSettingsFileThis event occurs when you open a settings file. For this event to occur, the event must be configured, and then saved to a settings file. When you open this settings file, the event occurs after the settings have been loaded but before the connection is made (if the settings file is configured to make a connection).
    ReflectionExitThis event occurs when you exit Reflection. This event occurs no matter how reflection is shut down. If Reflection is configured to Exit on Disconnect, this event occurs after this disconnect, and before Reflection goes away.
    ReflectionStartThis event occurs when you start Reflection. For this event to occur, you must save your settings file and use this settings file to start Reflection.
    SilenceDefines an event as the absence of activity for the specified duration. By default inactivity means the absence of data from the host. You can set InactivityEventsIgnoreKeyboardMouse to False if you want keystrokes and mouse actions to restart the countdown. Use the String argument to specify an interval of time in HH:MM:SS.hh format.
    TimeThe specified amount of time has elapsed from when the event was defined. Use the String argument to specify the interval of time in HH:MM:SS format. Use 1 as the value for Row and Column; these arguments are not relevant for this type of event.
    TimeOfDayThe event occurs at the specified time of day. Use the String argument to specify the time of day in HH:MM:SS format using a 24-hour clock (00:00:00-23:59:59). Use 1 as the value for Row and Column; these arguments are not relevant for this type of event
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Attachmate.Reflection.Emulation.OpenSystems.OnEventEventType

    See Also