Barlist.OnGroupChanged
Fires when a group, that is a member of this barlist, is
changed.
Syntax
handler_OnGroupChanged(group)
Parameters
group
Group that changed
Returns
None
Example
In this example, a message is displayed when a group changes
Dim With Events barlist as Barlist
Set barlist = new Barlist
...
Private Sub barlist_OnGroupChanged(ByVal group as Group)
MsgBox "Group " + group.Name + " changed"
End Sub
|