Home Up BarRecords Name Status SuperstructureMass SuperstructureMassEpoxy SubstructureMass SubstructureMassEpoxy OnBarRecordAdded OnBarRecordChanged OnBarRecrodRemoved OnBarRecordsSorted OnBarRecordMoved OnGroupChanged
| |
Group.OnBarRecordsSorted
Fires when the bar records in this group are sorted
Syntax
handler_OnBarRecordsSorted()
Parameters
None
Returns
None
Example
In this example, a message is displayed when bar records are
sorted.
Dim With Events group as Group
Set group = barlist.Groups(1)
...
Private Sub group_OnBarRecordsSorted()
MsgBox "The bar records were sorted"
End Sub
|