Method InitKeyboardEventNs
- Namespace
- SharpVectors.Dom.Events
- Assembly
- SharpVectors.Core.dll
InitKeyboardEventNs(string, string, bool, bool, IAbstractView, string, KeyLocationCode, bool, bool, bool, bool, bool)
The InitKeyboardEventNs method is used to initialize the value of a IKeyboardEvent created using the IDocumentEvent.CreateEvent method.
void InitKeyboardEventNs(string namespaceUri, string type, bool canBubbleArg, bool cancelableArg, IAbstractView viewArg, string keyIdentifierArg, KeyLocationCode keyLocationArg, bool ctrlKeyArg, bool shiftKeyArg, bool altKeyArg, bool metaKeyArg, bool altGraphKeyArg)
Parameters
namespaceUristringSpecifies the namespace URI associated with this event, or null if the applications wish to have no namespace.
typestringSpecifies the event type.
canBubbleArgboolSpecifies whether or not the event can bubble.
cancelableArgboolSpecifies whether or not the event's default action can be prevent.
viewArgIAbstractViewSpecifies the IKeyboardEvent's IAbstractView.
keyIdentifierArgstringSpecifies the IKeyboardEvent's KeyIdentifier attribute.
keyLocationArgKeyLocationCodeSpecifies the IKeyboardEvent's KeyLocation attribute.
ctrlKeyArgboolSpecifies the IKeyboardEvent's CtrlKey attribute.
shiftKeyArgboolSpecifies the IKeyboardEvent's ShiftKey attribute.
altKeyArgboolSpecifies the IKeyboardEvent's AltKey attribute.
metaKeyArgboolSpecifies the IKeyboardEvent's MetaKey attribute.
altGraphKeyArgboolSpecifies the IKeyboardEvent's AltGraphKey attribute.
Remarks
This method may only be called before the IKeyboardEvent has been dispatched via the IEventTarget.DispatchEvent method, though it may be called multiple times during that phase if necessary. If called multiple times, the final invocation takes precedence. This method has no effect if called after the event has been dispatched.