'Declaration Public Property Cancel As Boolean
'Usage Dim instance As CancelRoutedEventArgs Dim value As Boolean instance.Cancel = value value = instance.Cancel
public bool Cancel {get; set;}
Property Value
true to cancel the routed event; false otherwise.
Setting Cancel to true does not indicate that the event has been handled. In order to handle the event Handled must also be set to true.