InfoConnect API Guide
Attachmate.Reflection.Emulation.OpenSystems Namespace / ITerminal Interface / SettingsLoaded Event


In This Topic
    SettingsLoaded Event
    In This Topic
    This event is triggered immediately after a settings file is opened.
    Syntax
    'Declaration
     
    
    <SuppressMessageAttribute("Microsoft.Design", "CA1009:DeclareEventHandlersCorrectly")>
    Event SettingsLoaded As SettingsLoadedEventHandler
    'Usage
     
    
    Dim instance As ITerminal
    Dim handler As SettingsLoadedEventHandler
     
    AddHandler instance.SettingsLoaded, handler
    [SuppressMessage("Microsoft.Design", "CA1009:DeclareEventHandlersCorrectly")]
    event SettingsLoadedEventHandler SettingsLoaded
    Event Data

    The event handler receives an argument of type SettingsLoadedEventArgs containing data related to this event. The following SettingsLoadedEventArgs properties provide information specific to this event.

    PropertyDescription
     
    Remarks
    This event is fired only when the ITerminal.OpenSettings method is used. For code that should run before any connection occurs, use the ITerminal.Connecting event.
    See Also