ICIEventActions Interface

The ICIEventActions interface allows you to make changes to the Event Rule Action settings.

interface ICIEventActions : IDispatch
NOTE:  "Function" and "Sub" indicate that the member is a method.

Members

  • Function Add(lIndex As Long, pdispParams As Object) As Object

  • Adds an event action at specified position.

    HRESULT Add(
    [in] long lIndex,
    [in] IDispatch* pdispParams,
    [out, retval] IDispatch** ppdispAction);

    EFT v5.2 and later

  • Function Count() As Long

  • Retrieves a number of listed event actions.

    HRESULT Count([out, retval] long* plCount);

    EFT v5.2 and later

  • Sub Delete(lIndex As Long)
  • Deletes event action by index.
    HRESULT Delete([in] long lIndex);

    EFT v5.2 and later

  • Function Item(lIndex As Long) As Object

  • Retrieves or specifies an event action object by index. (Refer to ICIEventAction interface.)

    HRESULT Item(
    [in] long lIndex,
    [out, retval] IDispatch** ppdispAction);

    EFT v5.2 and later

Related Topics