ClipboardAccessPolicy.Pasted Event
In This Article
Fires after the user has pasted data into a DevExpress control from the clipboard.
Namespace: DevExpress.Data.Utils
Assembly: DevExpress.Data.Desktop.v24.2.dll
NuGet Packages: DevExpress.Data.Desktop, DevExpress.ExpressApp.Win.Design
#Declaration
public static event EventHandler<ClipboardAccessPolicy.ClipboardOperationEventArgs> Pasted
#Event Data
The Pasted event's data class is ClipboardAccessPolicy.ClipboardOperationEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Data |
Gets the data format. |
Data |
Gets an object that defines a format-independent mechanism for transferring data. |
Is |
Gets a value that indicates whether the clipboard clear operation is being processed. |
Is |
Gets a value that indicates whether the copy-to-clipboard operation is being processed. |
Is |
Gets a value that indicates whether the paste-from-clipboard operation is being processed. |
Operation | Gets the clipboard-related operation being processed. |
The event data class exposes the following methods:
Method | Description |
---|---|
To |
Returns a string representation of the current object. |
#Remarks
Read the following topic for additional information: Clipboard Access Policy.
See Also