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


In This Topic
    OnEventCommandType Enumeration
    In This Topic
    Specifies what sort of command to attach to the event.
    Syntax
    'Declaration
     
    
    Public Enum OnEventCommandType 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As OnEventCommandType
    public enum OnEventCommandType : System.Enum 
    Members
    MemberDescription
    BuiltInFunctionMaps the event to one or more built-in functions.
    RBCommandMaps the event to a single Reflection Basic statement.
    RBScriptMaps the event to a Reflection Basic script. Use the Commands argument to specify the script's file name. Supply complete path information if the script isn't on the Reflection macro path. You can pass arguments to the script using the optional CommandArguments.
    TransmitStringMaps the event to a string that is transmitted to the host when the event occurs. The string is assumed to be in the Windows character set, and is translated into the appropriate host character set as it is transmitted. Note: Use the Commands argument to specify the string to transmit.
    VBCommandMaps the event to a single Visual Basic statement. This statement can include Visual Basic functions and statements and/or Reflection methods and properties. Use doubled quotation marks for string values within literal strings.
    VBMacroMaps the event to a Reflection macro. Use the Commands argument to specify the macro's name. You can pass additional information to the MacroData property using CommandArguments.
    Inheritance Hierarchy

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

    See Also