DataObject.AddCopyingHandler Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.