ICIEventActions - Event Actions Interface

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

interface ICIEventActions : IDispatch

In the Members column, "Function" and "Sub" indicate that the member is a method.

 

Members

How it's used

Available versions

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

Add event action at specified position.

HRESULT Add(

[in] long lIndex,

[in] IDispatch* pdispParams,

[out, retval] IDispatch** ppdispAction);

EFT Server v5.2 and later

Function Count() As Long

Retrieve a number of listed event actions.

HRESULT Count(

[out, retval] long* plCount);

EFT Server v5.2 and later

Sub Delete(lIndex As Long)

Delete event action by index.

HRESULT Delete(

[in] long lIndex);

EFT Server v5.2 and later

Function Item(lIndex As Long) As Object

Retrieve or specify an event action object by index. (Refer to ICIEventAction interface.)

HRESULT Item(

[in] long lIndex,

[out, retval] IDispatch** ppdispAction);

EFT Server v5.2 and later