|
|
This interface is available in EFT Server 6.1. |
The ICIEventInfo interface is used to retrieve information about EFT Server’s events. (Also refer to ICIServer::AvailableEvents property.) The interface provides the set of read-only properties.
ICIEventInfo::Type read-only property allows retrieving EventType enumeration value corresponding to this event:
HRESULT Type([out, retval] EventType* pVal);
Example (VBScript):
If Event.Type = OnTimer Then
MsgBox "Event type: Timer"
End If
ICIEventInfo::Name read-only property allows retrieving human-readable name of this event.
HRESULT Name([out, retval] BSTR* pVal);
Example (VBScript):
MsgBox "Event: " & Event.Name