IDragEvent
interface IDragEvent
using System.Runtime.CompilerServices;
using Windows.Win32.System.Ole;
using Windows.Win32.UI.Shell;
namespace System.Private.Windows.Ole
{
[NullableContext(2)]
internal interface IDragEvent
{
int X { get; }
int Y { get; }
DROPEFFECT Effect { get; }
DROPIMAGETYPE DropImageType { get; }
IComVisibleDataObject DataObject { get; }
string Message { get; set; }
string MessageReplacementToken { get; set; }
}
}