ICIWindowsEventLogActionParams

The ICIWindowsEventLogActionParams interface properties are listed below.

interface ICIWindowsEventLogActionParams : IDispatch

Properties

  • Property Description As String

  • Retrieves or specifies the description.

    HRESULT Description([out, retval] BSTR* pVal);
    HRESULT Description([in] BSTR newVal);

    Example (VBScript):

    Retrieving:

    MsgBox "Event is: " & oWEL.Description

    Specifying:

    oWEL.Description = "Some event"

    EFT v6.3 and later

  • Property EventID as Long

  • Retrieves or specifies the event log ID.

    HRESULT EventID([out, retval) LONG* pVal);
    HRESULT EventID([in] LONG newVal);

    EFT v6.4 and later

  • Property type As EventLogType

  • Retrieves or specifies the event log type.

    HRESULT Type([out, retval] EventLogType* pVal);
    HRESULT Type([in] EventLogType newVal);

     Example (C#):

    eventLogActionParams.type = EventLogType.EventError;

    Example (VBScript):

    Retrieving:

    if EventInformation = oWEL.Type then
    '…
    end if

    Specifying:

    oWEL.Type = EventError

    EFT v6.3 and later

Dialog Box Equivalents