DataObject.AddCopyingHandler Method

Definition

Adds a Copying event handler to a specified dependency object.

public:
 static void AddCopyingHandler(System::Windows::DependencyObject ^ element, System::Windows::DataObjectCopyingEventHandler ^ handler);
public static void AddCopyingHandler (System.Windows.DependencyObject element, System.Windows.DataObjectCopyingEventHandler handler);
static member AddCopyingHandler : System.Windows.DependencyObject * System.Windows.DataObjectCopyingEventHandler -> unit
Public Shared Sub AddCopyingHandler (element As DependencyObject, handler As DataObjectCopyingEventHandler)

Parameters

element
DependencyObject

The dependency object (a UIElement or ContentElement) to which to add the event handler.

handler
DataObjectCopyingEventHandler

A delegate that references the handler method to add.

Remarks

The Copying event occurs when a copy operation has finished converting the selected content into all specified data formats, has stored all data formats in the associated data object, and is ready to put the data object on the system Clipboard or to begin a drag operation.

Use this event to inspect or modify a data object after a copy operation completes, and before proceeding with subsequent operations. The entire copy operation can be canceled by calling CancelCommand.

Applies to

See also