ICIEventInfo Interface

The ICIEventInfo interface is used to retrieve information about EFT’s events. (Also refer to ICIServer::AvailableEvents property.) The interface provides the set of read-only properties.

interface ICIEventInfo : IDispatch

Properties

  • Property Name As String read-only

  • Specifies the name of the event.

    HRESULT Name([out, retval] BSTR* pVal);

    Example (VBScript):

    MsgBox "Event: " & Event.Name

    EFT v6.1 and later

  • Property type As EventType read-only

  • Specfies the type of event.

    HRESULT Type([out, retval] EventType* pVal);

    Example (VBScript):

    If Event.Type = OnTimer Then
    MsgBox "Event type: Timer"
    End If

    EFT v6.1 and later

Related Topics