In This Article

CutCopyDragEventArgs Class

Provides arguments for CutCopyDrag events.

public class CutCopyDragEventArgs : EventArgs
Inheritance:
object EventArgs object

Constructors

CutCopyDragEventArgs(CutCopyDragAction, IDataStore)

Initializes a new instance of the CutCopyDragEventArgs class.

public CutCopyDragEventArgs(CutCopyDragAction action, IDataStore dataStore)
Parameter Type Description
action CutCopyDragAction

The CutCopyDragAction describing the action that is the source of the event.

dataStore IDataStore

The IDataStore that contains the data to be dragged or set to the clipboard.

Properties

Action

Gets the CutCopyDragAction describing the action that is the source of the event.

public CutCopyDragAction Action { get; }

Property Value

CutCopyDragAction:

The CutCopyDragAction describing the action that is the source of the event.

DataStore

Gets the IDataStore that contains the data to be dragged or set to the clipboard.

public IDataStore DataStore { get; }

Property Value

IDataStore:

The IDataStore that contains the data to be dragged or set to the clipboard.

Inherited Members