DataObjectCopyingEventHandler Delegate
Represents a method that will handle the DataObject.Copying attached event.
Assembly: PresentationCore (in PresentationCore.dll)
'Declaration Public Delegate Sub DataObjectCopyingEventHandler ( _ sender As Object, _ e As DataObjectCopyingEventArgs _ ) 'Usage Dim instance As New DataObjectCopyingEventHandler(AddressOf HandlerMethod)
In XAML, you can use delegates but you cannot define your own.
Parameters
- sender
- Type: System.Object
The object where the event handler is attached.
- e
- Type: System.Windows.DataObjectCopyingEventArgs
The event data.
The Copying attached 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.
A Copying attached event handler method typically inspects the contents of the data object passed in as an event argument, and performs custom operations on the data object, such as adding, removing, or modifying data formats. This handler method may also cancel the copying event by calling CancelCommand.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.