DataObject.AddPastingHandler 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 Pasting event handler to a specified dependency object.
public:
static void AddPastingHandler(System::Windows::DependencyObject ^ element, System::Windows::DataObjectPastingEventHandler ^ handler);
public static void AddPastingHandler (System.Windows.DependencyObject element, System.Windows.DataObjectPastingEventHandler handler);
static member AddPastingHandler : System.Windows.DependencyObject * System.Windows.DataObjectPastingEventHandler -> unit
Public Shared Sub AddPastingHandler (element As DependencyObject, handler As DataObjectPastingEventHandler)
Parameters
- element
- DependencyObject
The dependency object (a UIElement or ContentElement) to which to add the event handler.
- handler
- DataObjectPastingEventHandler
A delegate that references the handler method to add.
Remarks
Use this event to inspect a data object before the data is pasted, and possibly to decide on an alternate course of action, such as:
Cancel the Paste - Cancel the entire paste operation by calling the CancelCommand method.
Select an Alternate Format - Change the selected paste format by specifying a new value for the FormatToApply property. The newly selected format must by supported by the data object to be pasted.
Note
If the paste format is changed, ensure that the paste target supports the newly specified format.
Insert a New Format - If you determine that the paste data object does not support the desired format, update the data object to include a version of the data in the desired format. Custom data converters are often used as part of this process.
Changing the content of a paste data object (DataObject) does not change the data stored on the system Clipboard; any such changes will apply only to the data object associated with the associated paste command.