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