Beispiel #1
0
 public static bool Drag(this ElementRef e)
 {
     return(e.OnEvent(HtmlEvents.Drag.OnDrag, out _));
 }
Beispiel #2
0
 public static bool Cut(this ElementRef e)
 {
     return(e.OnEvent(HtmlEvents.Clipboard.OnCut, out _));
 }
Beispiel #3
0
 public static bool Paste(this ElementRef e)
 {
     return(e.OnEvent(HtmlEvents.Clipboard.OnPaste, out _));
 }
Beispiel #4
0
 public static bool Wheel(this ElementRef e)
 {
     return(e.OnEvent(HtmlEvents.Mouse.OnWheel, out _));
 }
Beispiel #5
0
 public static bool MouseUp(this ElementRef e)
 {
     return(e.OnEvent(HtmlEvents.Mouse.OnMouseUp, out _));
 }
Beispiel #6
0
 public static bool DoubleClick(this ElementRef e)
 {
     return(e.OnEvent(HtmlEvents.Mouse.OnDoubleClick, out _));
 }
Beispiel #7
0
 public static bool KeyUp(this ElementRef e)
 {
     return(e.OnEvent(HtmlEvents.Keyboard.OnKeyUp, out _));
 }
Beispiel #8
0
 public static bool Scroll(this ElementRef e)
 {
     return(e.OnEvent(HtmlEvents.Drag.OnScroll, out _));
 }