Home
Up
Count
Item
Add
Move
MoveUp
MoveDown
Remove
OnBarRecordAdded
OnBarRecordChanged
OnBarRecordRemoved
OnBarRecordsSorted
OnBarRecordMoved
OnGroupAdded
OnGroupChanged
OnGroupRemoved
OnGroupMoved

GroupCollection.OnBarRecordRemoved

Fires when a bar record is removed from this group collection

Syntax

handler_OnBarRecordRemoved(group,mark)

Parameters

group

Group from which the bar record was removed

mark

Mark number of the bar record that was removed

Returns

None

Example

In this example, a message is displayed when a bar record is removed from this group collection

Dim With Events groups as GroupCollection
Set groups = barlist.Groups
...

Private Sub groups_OnBarRecordRemoved(ByVal group as Group, ByVal mark as String)
   MsgBox "Mark " + mark + " was removed from Group " + group.Name
End Sub

 

Copyright © 1999, Washington State Department of Transportation