public static bool Drag(this ElementRef e) { return(e.OnEvent(HtmlEvents.Drag.OnDrag, out _)); }
public static bool Cut(this ElementRef e) { return(e.OnEvent(HtmlEvents.Clipboard.OnCut, out _)); }
public static bool Paste(this ElementRef e) { return(e.OnEvent(HtmlEvents.Clipboard.OnPaste, out _)); }
public static bool Wheel(this ElementRef e) { return(e.OnEvent(HtmlEvents.Mouse.OnWheel, out _)); }
public static bool MouseUp(this ElementRef e) { return(e.OnEvent(HtmlEvents.Mouse.OnMouseUp, out _)); }
public static bool DoubleClick(this ElementRef e) { return(e.OnEvent(HtmlEvents.Mouse.OnDoubleClick, out _)); }
public static bool KeyUp(this ElementRef e) { return(e.OnEvent(HtmlEvents.Keyboard.OnKeyUp, out _)); }
public static bool Scroll(this ElementRef e) { return(e.OnEvent(HtmlEvents.Drag.OnScroll, out _)); }