public KeyboardEvent(string namespaceUri, string eventType, bool bubbles, bool cancelable, IAbstractView view, string keyIdentifier, KeyLocationCode keyLocation, bool ctrlKey, bool shiftKey, bool altKey, bool metaKey, bool altGraphKey) { InitKeyboardEventNs(namespaceUri, eventType, bubbles, cancelable, view, keyIdentifier, keyLocation, ctrlKey, shiftKey, altKey, metaKey, altGraphKey); }
public void InitKeyboardEventNs(string namespaceUri, string eventType, bool bubbles, bool cancelable, IAbstractView view, string keyIdentifier, KeyLocationCode keyLocation, bool ctrlKey, bool shiftKey, bool altKey, bool metaKey, bool altGraphKey) { InitUiEventNs(namespaceUri, eventType, bubbles, cancelable, view, 0); _keyIdentifier = keyIdentifier; _keyLocation = keyLocation; _ctrlKey = ctrlKey; _shiftKey = shiftKey; _altKey = altKey; _metaKey = metaKey; _altGraphKey = altGraphKey; }
public KeyboardEvent( string eventType, bool bubbles, bool cancelable, IAbstractView view, string keyIdentifier, KeyLocationCode keyLocation, bool ctrlKey, bool shiftKey, bool altKey, bool metaKey, bool altGraphKey) { InitKeyboardEvent( eventType, bubbles, cancelable, view, keyIdentifier, keyLocation, ctrlKey, shiftKey, altKey, metaKey, altGraphKey); }
public void InitKeyboardEvent( string eventType, bool bubbles, bool cancelable, IAbstractView view, string keyIdentifier, KeyLocationCode keyLocation, bool ctrlKey, bool shiftKey, bool altKey, bool metaKey, bool altGraphKey) { InitUiEvent(eventType, bubbles, cancelable, view, 0); this.keyIdentifier = keyIdentifier; this.keyLocation = keyLocation; this.ctrlKey = ctrlKey; this.shiftKey = shiftKey; this.altKey = altKey; this.metaKey = metaKey; this.altGraphKey = altGraphKey; }
public void InitKeyboardEventNs( string namespaceUri, string eventType, bool bubbles, bool cancelable, IAbstractView view, string keyIdentifier, KeyLocationCode keyLocation, bool ctrlKey, bool shiftKey, bool altKey, bool metaKey, bool altGraphKey) { InitUiEventNs(namespaceUri, eventType, bubbles, cancelable, view, 0); this.keyIdentifier = keyIdentifier; this.keyLocation = keyLocation; this.ctrlKey = ctrlKey; this.shiftKey = shiftKey; this.altKey = altKey; this.metaKey = metaKey; this.altGraphKey = altGraphKey; }