System.Windows.Forms.DragEventArgs.DragEventArgs C# (CSharp) Method

DragEventArgs() public method

public DragEventArgs ( IDataObject data, int keyState, int x, int y, DragDropEffects allowedEffect, DragDropEffects effect ) : System
data IDataObject
keyState int
x int
y int
allowedEffect DragDropEffects
effect DragDropEffects
return System
        public DragEventArgs(IDataObject data, int keyState, int x, int y, DragDropEffects allowedEffect, DragDropEffects effect)
        {
            _data = data;
            _keyState = keyState;
            _x = x;
            _y = y;
            _allowedEffect = allowedEffect;
            _effect = effect;
        }
DragEventArgs