Home Up BarRecords Name Status SuperstructureMass SuperstructureMassEpoxy SubstructureMass SubstructureMassEpoxy OnBarRecordAdded OnBarRecordChanged OnBarRecrodRemoved OnBarRecordsSorted OnBarRecordMoved OnGroupChanged
| |
Group.OnBarRecordRemoved
Fires when a bar record is removed from this group
Syntax
handler_OnBarRecordRemoved(mark)
Parameters
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 the group
Dim With Events group As Group
Set group = barlist.Groups(1)
...
Private Sub group_OnBarRecordRemoved(ByVal mark as String)
MsgBox "Mark " + mark + " was removed"
End Sub
|