ICIEventRules Interface

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

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

Methods

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

  • Add an Event Rule at a specified position.

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

    EFT v5.2 and later

  • Function Count() As Long

  • Retrieves the number of Event Rules.

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

    EFT v5.2 and later

  • Sub Delete(lIndex As Long)

  • Deletes an Event Rule by index.

    HRESULT Delete([in] long lIndex);

    EFT v5.2 and later

  • Function Find(strName As String) As Object

  • Find an Event Rule by name.

    HRESULT Find([in] BSTR strName,[out, retval] IDispatch **ppdisp);

    EFT v5.2 and later

  • Function Item(lIndex As Long) As Object

  • Retrieves or specifies an Event Rule object by index. (Refer to ICIEventRule interface.)

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

    EFT v5.2 and later

Related Topics