Barlist.OnGroupRemoved
Fires when a group is removed from this barlist
Syntax
handler_OnGroupRemoved(name)
Parameters
name
Name of the group that was removed
Returns
None
Example
In this example, a message is displayed when a group is
removed from the barlist.
Dim With Events barlist as Barlist
Set barlist = new Barlist
...
Private Sub barlist_OnGroupRemoved(ByVal name as String)
MsgBox "Group " + group.Name + " was removed"
End Sub
|