DragEventArgs.Modifiers Property

Definition

Gets a flag enumeration indicating the current state of the SHIFT, CTRL, and ALT keys, as well as the state of the mouse buttons.

public:
 property DragDropModifiers Modifiers { DragDropModifiers get(); };
DragDropModifiers Modifiers();
public DragDropModifiers Modifiers { get; }
var dragDropModifiers = dragEventArgs.modifiers;
Public ReadOnly Property Modifiers As DragDropModifiers

Property Value

One or more members of the DragDropModifiers flag enumeration.

Remarks

The effect of a drag-and-drop operation can be adjusted depending on the state of a particular key. For example, data may either be copied or moved depending on whether the CTRL or SHIFT keys are pressed during the drag-and-drop operation.

Applies to

See also