GoXam for WPF v3
SelectionDeleting Event
Northwoods.GoXam Namespace > Diagram Class : SelectionDeleting Event
This event is raised by Delete, before the deletion occurs.
Syntax
[Category("Diagram")]
public event EventHandler<DiagramEventArgs> SelectionDeleting
Event Data

The event handler receives an argument of type DiagramEventArgs containing data related to this event. The following DiagramEventArgs properties provide information specific to this event.

PropertyDescription
Gets or sets the specific FrameworkElement that was acted upon and that is the subject of the event.  
(Inherited from System.Windows.RoutedEventArgs)
(Inherited from System.Windows.RoutedEventArgs)
Gets or sets the Part that was acted upon and that is the subject of the event.  
(Inherited from System.Windows.RoutedEventArgs)
(Inherited from System.Windows.RoutedEventArgs)
Remarks
Set the Handled property on the DiagramEventArgs to cancel the deletion. The SelectedParts collection holds the currently selected Parts.
See Also