strEventGroupData
Purpose
This structure is used as a single return value or an array return value for functions that request information about event groups. The description of each member is below.
Parameters
Returns
Example
Sample Code
VB
Public Structure strEventGroupData
Public GroupID As Integer ' This is the event group reference ID.
Public GroupName As String ' The name of the group.
Public Global_Actions_Count As Integer ' The number of global actions in this event group.
Public Global_Actions As String() ' The list (array) of global actions in action_type : action_name format.
Public Global_Conditions_Count As Integer ' The number of global conditions in this event group.
Public Global_Conditions As String() ' The list (array) of global conditions in trigger_type : trigger_name format.
End Structure