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