Click or drag to resize

CefKeyEvent Class

Inheritance Hierarchy
SystemObject
  Internal.Xilium.CefGlueCefKeyEvent

Namespace: Internal.Xilium.CefGlue
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public sealed class CefKeyEvent

The CefKeyEvent type exposes the following members.

Constructors
 NameDescription
Public methodCefKeyEventInitializes a new instance of the CefKeyEvent class
Top
Properties
 NameDescription
Public propertyCharacter The character generated by the keystroke.
Public propertyEventType The type of keyboard event.
Public propertyFocusOnEditableField True if the focus is currently on an editable field on the page. This is useful for determining if standard key events should be intercepted.
Public propertyIsSystemKey Indicates whether the event is considered a "system key" event (see http://msdn.microsoft.com/en-us/library/ms646286(VS.85).aspx for details). This value will always be false on non-Windows platforms.
Public propertyModifiers Bit flags describing any pressed modifier keys. See cef_event_flags_t for values.
Public propertyNativeKeyCode The actual key code genenerated by the platform.
Public propertyUnmodifiedCharacter Same as |character| but unmodified by any concurrently-held modifiers (except shift). This is useful for working out shortcut keys.
Public propertyWindowsKeyCode The Windows key code for the key event. This value is used by the DOM specification. Sometimes it comes directly from the event (i.e. on Windows) and sometimes it's determined using a mapping function. See WebCore/platform/chromium/KeyboardCodes.h for the list of values.
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Extension Methods
 NameDescription
Public Extension MethodMethodInvoke Calls the object method by name.
(Defined by ObjectEx)
Public Extension MethodPropertyGet Gets the value of the object property by name.
(Defined by ObjectEx)
Public Extension MethodPropertyGetT Gets the value of the object property by name.
(Defined by ObjectEx)
Public Extension MethodPropertySet Sets the value of the object property by name.
(Defined by ObjectEx)
Top
See Also