You guess?
Code:
Private Sub Document_ContentControlOnExit(ByVal ContentControl As ContentControl, Cancel As Boolean)
Msgbox "You exited a CC so I fired"
Select Case ContentControl.Tag
Case "type"
Msgbox "Since my tag is ""type"" I'm going to keep cooperating."
If ContentControl.Range.Text = "Litigation / Litige" Then MsgBox "Some notification"
End Select
End Sub